0
votes
0answers
37 views

RTL scripts in iOS action sheets; unexpected behavior

There's a view in my iOS app which basically shows a list of Wikipedias sorted by the language that Wikipedia serves. I'm adding a feature where, when a language is tapped, an action sheet will pop up ...
0
votes
0answers
105 views

Change the iphone screen layout to rtl for Arabic

I am a novice developer on the iOS platform. I have a sample app made in English. I also have the localisation files that display the Arabic strings when the user clicks on a button to change the ...
0
votes
1answer
144 views

Creating an objective-C preprocessor directive that determines if the current language is RTL or LTR

I'm trying to build an Objective-C preprocessor directive, that will determine if the current user's preferred language is RTL or LTR - instead of checking it every time I want to display a ...
1
vote
1answer
845 views

Non-Editable UITextView Left-Aligns RTL (Arabic, Hebrew, etc) Text

Using iOS 5.0+ for iPad, I have an app with containing Arabic text in a UITextView where: myTextView.editable = NO; Strangely, the Arabic text suddenly aligns to the left and not the right, causing ...
0
votes
1answer
198 views

Specifying the direction of the language of a string, and displaying it right

I have an application that reads some strings and displays them in some UILabels, but these strings are not from one language so I need to be able to set the alignment of the label to right if the ...
2
votes
1answer
1k views

Right to left UILabels

I need to display a text using a UILabel ( can't use UIWebView ), and it sometimes contains both Hebrew and English. using UILabel's default settings the sentence gets mixed up and doesn't make sense. ...
1
vote
2answers
674 views

In iOS - How do I fit a UILabel to its text, without changing its position?

I have a UILabel which has RTL text in it (I mean the text in it is aligned to the right). I'm calling sizeToFit on it, so it'll shrink the height of it, and the text won't appear in the middle of the ...