How to Use text in Arabic in Iphone App
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.
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.
精彩评论