1.设置了 UITextView 中的 layoutManager(NSLayoutManager) 的是否非连续布局属性,默认是 YES,设置为 NO 后 UITextView 就不会再自己重置滑动了。
_logView.layoutManager.allowsNonContiguousLayout =NO;
2.每次添加内容后,将视图滚动到最后
[_logTextView scrollRangeToVisible:NSMakeRange(_logTextView.text.length,1)];
网友评论