Textfield not accept arabic languages - objective-c

When I type arabic languages on textfield it doesn't allow anything in textField. how to make Arabic language on textField.
I changed simulator language as arabic but not accepted in texField. One of the textfield accepts but another textfield letters not showing in arabic language. If any settings in textfield to be changed?

use the localization search it google and understand and apply in your project in localization...
another technic is simulator in keyboard change language ....

Related

Apple App Store Promotional Text Not Shown

I have an app published on Apple App Store. App Store Connect has optional text field labeled as ”Promotional Text”. I want to use it and enter my text. The text appears on the App Store (takes some time but eventually) but only when the App Store language matches the app language.
My app supports only one language (English) and thus I can enter the Promotional Text only to the English locale.
When I set my phone language to English I can see the promotional text fine.
When I set my phone language to any other language the promotional text is not shown. All other information about my app is shown normally. They are in English and all other texts of the App Store app are shown in selected language as should be.
I don’t see any reason why promotional text should not be shown with same language rules as for example the Description of What’s New is shown.
Is there something I’m missing here? Is only way to get the Promotional Text shown to copy my English descriptions, etc., to all languages the App Store supports?

Incorrect Japanese font rendering inside NSControl object

I'm building a UI application in macOS with dynamic localization (meaning that it's possible to switch language while the application is running).
I've noticed that if the initial language is configured to Japanese, and I switch to English on-the-fly, the text on the controls is rendered ok.
However, on the opposite case, when the initial language is English and I switch to Japanese on-the-fly, the Japanese symbols on the text field come out a little bit enlarged. (see below drawings to emphasize the difference - the left snippet is the original rendering while the right one represents the enlarged version)
For any particular control, the language is changed by simply assigning the localized string (taken with help of NSLocalizedString function) to the stringValue property of the control.
These results appeared on all versions I've tested (both 10.13 and 10.12).
Perhaps anybody encountered similar results? how should I resolve them ?
So apparently the rendering problem is resolved if the Language is properly installed on your machine under Language and Regions -> Preferred Languages

How to get text from textfield of ios system messages application

I am using custom keyboard to convert english written text into urdu or arabic. I am able to convert text written in textfield of within my app but i dont know how to get text written in textfield of system messages app of iphone.
You can not get the text of iMessage messag. Apple does not allow this for privacy reasons.

Japanese, Russian or English characters in dynamic Text Field for PDF

Perhaps someone could help me : I've got a problem with my project. I've got a dynamic pdf report, generated by Jasper, which contains dynamic TextField in Japanese, Russian or English text, and could be in Bold, Itallic or Normal Font. This report is generated in a multi- language application, but I've no way to know in which language the input text has been originally written.
I try to use the font delivered by Microsoft ARIAUNI.TTF, but the problem is that this font doesn't work with bold or italic Japanese characters.
I've got some solutions (like remove all bold or italic TextField in my jrxml file), but I don't find it an ideal solution.
Has anyone had ever such a problem ? Does someone have a good solution for it?
Thanks in advance,
Matthieu Blanchard
We use the "Arial MS" font for Japanese characters specifically. Works nice for us.

How can I add Arabic typing in VB.Net?

I want to add Arabic typing in VB.Net. How can I do that?
It already supports it; it's all unicode under the hood now. If your users have an arabic keyboard layout the standard controls and inputs should accept arabic text. You do need to make sure to use a system that supports unicode for any persistence you use (database, config files, etc), but the vb.net layer should already work.