我怎样才能写的UITextView的语言? 或者我怎么能知道UITextView的是从右到左或在当前状态下从左向右?
Answer 1:
[textView baseWritingDirectionForPosition:[textView beginningOfDocument] inDirection:UITextStorageDirectionForward] == UITextWritingDirectionRightToLeft
如果应该返回true UITextView
是从右到左,否则为false。
更多文档,可以发现在这里 ,如果你需要它!
Answer 2:
在回答您的其他问题,您可以从所使用的键盘语言UITextInputMode
文档: http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextInputMode_Class/Reference/Reference.html
Answer 3:
该解决方案的工作更好地为我
[NSLocale characterDirectionForLanguage:self.textView.textInputMode.primaryLanguage] == NSLocaleLanguageDirectionRightToLeft
文章来源: Get writing language of “uitextview” iphone?