Reputation: 21
I want To Know that how we can use text as arabic in iphone applications and how we can create code . And also how we can show text in arabic on uilabel or uitextview.
Upvotes: 0
Views: 2887
Reputation: 12714
It's definitely possible to write
yourLabel.text = @"إعدادات"; // "Settings"
iOS supports arabic language since 3.0.
You'll have to manage text alignments yourself if you want to display right-to-left text.
Upvotes: 1