首页 > 移动平台 > 详细

textViewDidChange: crashes in iOS 7

时间:2015-09-18 18:09:48      阅读:366      评论:0      收藏:0      [点我收藏+]

What‘s happening is that you‘re typing what is referred to as multistage text input, i.e. the input has to be confirmed from the user before it‘s actually committed into the underlying text. You get the crash because the text is only kind-of inputted, and until the text has been committed, it could easily change to something else.

To detect this situation, you‘re looking for the markedTextRange property of the UITextView, which indicates if you‘re in this complex input mode.

If the property is non-nil, then you‘re in this special input mode, so you should guard your modification code with something like:

if (self.tv.markedTextRange == nil && self.tv.text.length > maxLength) {
    // Perform change
}

Near as I can tell the crash is triggered by the special multistage text input mode, so you should avoid changing the text while this mode is active.

textViewDidChange: crashes in iOS 7

原文:http://www.cnblogs.com/ygm900/p/4819784.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!