更新UITextView后,自动显示到最下面内容
2018-07-23 本文已影响16人
巴赫海兹
1.设置了 UITextView 中的 layoutManager(NSLayoutManager) 的是否非连续布局属性,默认是 YES,设置为 NO 后 UITextView 就不会再自己重置滑动了。
_logView.layoutManager.allowsNonContiguousLayout =NO;
2.每次添加内容后,将视图滚动到最后
[_logTextView scrollRangeToVisible:NSMakeRange(_logTextView.text.length,1)];