美文网首页
UITextView 坑

UITextView 坑

作者: 秦枫桀 | 来源:发表于2018-09-10 16:53 被阅读0次
  • setAttributedText: 后,会自动滚动到文本中间的位置。

解决办法:

bottomTextView = UITextView()
bottomTextView.delegate = self
bottomTextView.backgroundColor = UIColor.clear
bottomTextView.isSelectable = true
bottomTextView.isEditable = false
bottomTextView.isUserInteractionEnabled = true
bottomTextView.linkTextAttributes = [:]
bottomTextView.attributedText = attributedString
// 使用主操作队列来确保恢复操作在“重置为0”之后发生
OperationQueue.main.addOperation {
    self.bottomTextView.setContentOffset(CGPoint.zero, animated: false)
}
view.addSubview(bottomTextView)

相关文章

网友评论

      本文标题:UITextView 坑

      本文链接:https://www.haomeiwen.com/subject/lwnsgftx.html