gpt4 book ai didi

Swift TextView 不在文本顶部

转载 作者:行者123 更新时间:2023-11-28 13:44:49 24 4
gpt4 key购买 nike

我的 TextView 有问题。当我用 TextView 打开 Controller 时,文本不在顶部,而是在最后。我该如何解决 Xcode 10 中的这个错误?

我试过这段代码

extension UIScrollView {
func scrollToTop() {
let desiredOffset = CGPoint(x: 0, y: -contentInset.top)
setContentOffset(desiredOffset, animated: true)
}
}

最佳答案

我在加载 View 之前禁用 UITextView 的滚动,然后再次启用它:

override func viewWillAppear(_ animated: Bool) {
myTextView.isScrollEnabled = false
}

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

希望这对你有用!

关于Swift TextView 不在文本顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55548644/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com