2018.9.21
1.给UITextView添加内容后,内容显示自动滚动到最后一行;
// 创建后时先设置一下属性
textView.layoutManager.allowsNonContiguousLayout = NO;
// 有新的内容赋值后调用
[textView scrollRangeToVisible:NSMakeRange(textView.text.length, 1)];
2018.9.21
// 创建后时先设置一下属性
textView.layoutManager.allowsNonContiguousLayout = NO;
// 有新的内容赋值后调用
[textView scrollRangeToVisible:NSMakeRange(textView.text.length, 1)];
本文标题:(iOS - Objective-C) UITextView笔记
本文链接:https://www.haomeiwen.com/subject/cmuanftx.html
网友评论