UITextView 坑

2018-09-10  本文已影响0人  秦枫桀

解决办法:

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)
上一篇 下一篇

猜你喜欢

热点阅读