欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[IOS]textView自动滚动到底部

程序员文章站 2022-03-31 20:34:00
...

UITextView text content doesn't start from the top

 

参考:https://*.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

相关标签: UITextView scroll