gpt4 book ai didi

ios - 附加文本时,由 NSTextStorage 支持的 UITextView 未更新

转载 作者:行者123 更新时间:2023-11-30 13:11:30 26 4
gpt4 key购买 nike

下面是一个由 NSTextStorage 支持的 UITextView 的简单示例。单击某个 UI 按钮即可触发“doAction1”。阅读文档后,我的印象是,通过在开始/结束编辑 block 中更新 NSTextStorage, View 也会自动更新自身。

但是,这似乎并没有发生——下面的示例附加了“...World!”到 NSTextStorage 但 UITextView 没有反射(reflect)这一点 - 并且继续只显示“Hello”。有什么想法吗?

import UIKit

class ViewController: UIViewController {
let TEXT = "Hello"

var m_layoutManager: NSLayoutManager!
var m_textView: UITextView!

@IBAction func doAction1(_ sender: AnyObject) {
let ts = m_layoutManager.textStorage

ts?.beginEditing()
ts?.append(AttributedString(string:"...World!"))
ts?.endEditing()

// These two don't make a difference either:
//
// m_layoutManager.invalidateDisplay(forCharacterRange: NSRange(location: 0, length: (ts?.length)!))
// m_textView.setNeedsDisplay()
//
}

override func viewDidLoad() {
super.viewDidLoad()

let textStorage = NSTextStorage(string: TEXT)
let textContainer = NSTextContainer(
size: CGSize(width: 200, height: 300))

m_layoutManager = NSLayoutManager()
m_layoutManager.textStorage = textStorage
m_layoutManager.addTextContainer(textContainer)

m_textView = UITextView(
frame: CGRect(x: 0, y: 20, width: 200, height: 300),
textContainer: textContainer)

view.addSubview(m_textView)
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
}

最佳答案

已解决。 NSLayoutManager 未正确连接到 NSTextStorage。因此,不要告诉布局管理器它有存储空间,即:

m_layoutManager.textStorage = textStorage

我告诉存储它有一个管理器:

textStorage.addLayoutManager(m_layoutManager)

就是这样。

关于ios - 附加文本时,由 NSTextStorage 支持的 UITextView 未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38674198/

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