当前位置 : 主页 > 编程语言 > java >

[IOS]textView自动滚动到底部

来源:互联网 收集:自由互联 发布时间:2022-08-10
UITextView text content doesn't start from the top 参考:https://stackoverflow.com/questions/26835944/uitextview-text-content-doesnt-start-from-the-top 我使用的是这种方法: override func viewWillAppear(_ animated: Bool) { yourT


UITextView text content doesn't start from the top

 

参考:https://stackoverflow.com/questions/26835944/uitextview-text-content-doesnt-start-from-the-top

 

我使用的是这种方法:



override func viewWillAppear(_ animated: Bool) {
yourTextView.isScrollEnabled = false
yourTextView.text = "....."


}

override func viewDidAppear(_ animated: Bool) {
yourTextView.isScrollEnabled = true
}



 

原理:当插入大量文本,会导致页面scroll向下,所以在viewWillAppear阶段先锁定页面的scroll,然后导入文本,使其不自动向下scroll。然后在viewDidAppear阶段,再允许scroll

上一篇:MySQL常用命令
下一篇:没有了
网友评论