How to display Text in Arabic in UIlabel

醉酒当歌 提交于 2019-12-04 17:07:13

If you convert each 4 text digit decimal number in the server response string to a C int, then you can convert each character to an NSString using something like:

int c = ... /* your 4 text digit unicode ordinal converted to an integer */
charString = [ NSString stringWithFormat:@"%C", c ];

You might also be able to ask a UIWebView to run a line of Javascript and return an NSString.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!