我在使用NSTextView的macOS 10.12 Mojave上观察到一个奇怪的问题。
。
我正在像这样更改didChangeText()
中的textStorage属性:
self.textStorage?.beginEditing()
ARTokenManager.getToken(text: text, language: language) { (tokens) in
// This line reset the attributes
// If I remove it, the cursor appear properly
// But the attributes are conserved
self.textStorage?.setAttributes([NSAttributedString.Key.font: self.font!,
NSAttributedString.Key.foregroundColor: self.defaultTextColor], range: range)
for token in tokens {
let attributeRange = NSRange(location: token.range.location + range.location, length: token.range.length)
self.textStorage?.addAttributes(token.attributes, range: attributeRange)
}
}
self.textStorage?.endEditing()
当我删除setAttributes
方法时,一切都按预期工作,但我无法解释原因。我可能将属性重置错误。此问题仅适用于Mojave。
有人有相同的问题或可以向我解释我在做什么错吗?
谢谢。
答案 0 :(得分:1)
经过研究,我发现我的问题更多是关于使用NSTextView突出显示语法。我知道这是许多macOS开发人员都在问的问题,并且有很多解决方案。这可能不是最好的方法,但这就是我解决此问题的方法。
为此,我使用了NSTextStorage的子类。这是完成所有语法工作的地方。 NSTextStorage不是面向协议的,因此您必须按照Apple文档的建议自己重写方法:
class SyntaxTextStorage: NSTextStorage {
private var storage: NSTextStorage
override var string: String {
return storage.string
}
override init() {
self.storage = NSTextStorage(string: "")
super.init()
}
override func attributes(at location: Int, effectiveRange range: NSRangePointer?) -> [NSAttributedString.Key : Any] {
return storage.attributes(at: location, effectiveRange: range)
}
override func replaceCharacters(in range: NSRange, with str: String) {
beginEditing()
storage.replaceCharacters(in: range, with: str)
edited(.editedCharacters, range: range, changeInLength: str.count - range.length)
endEditing()
}
override func setAttributes(_ attrs: [NSAttributedString.Key : Any]?, range: NSRange) {
beginEditing()
storage.setAttributes(attrs, range: range)
edited(.editedAttributes, range: range, changeInLength: 0)
endEditing()
}
}
这是创建文本存储的基础。
下一步是将文本存储设置为textView。为此,可以使用在textView replaceTextStorage()
中可以访问的layoutManager
方法。
class SyntaxTextView: NSTextView {
var storage: SyntaxTextStorage!
override func awakeFromNib() {
super.awakeFromNib()
configureTextStorage()
}
private func configureTextStorage() {
storage = SyntaxTextStorage()
layoutManager?.replaceTextStorage(storage)
}
}
最后一步是完成语法工作。此过程的CPU成本非常高。有很多方法可以做到最好。我建议您实现一个类,该类将返回NSAttributedString
和NSRange
的列表。文本存储的工作仅应将样式应用于文本。
就个人而言,我使用了processEditing
方法来进行文本分析:
override func processEditing() {
super.processEditing()
syntaxCurrentParagraph()
}
我建议您在后台进行语法分析,然后,如果自上次分析以来没有文本更改,请将更改应用于文本。始终在文本存储中,我实现了一个syntax
方法,该方法将样式应用于文本:
private func syntax(range: NSRange, completion: ((_ succeed: Bool) -> Void)? = nil) {
guard range.length > 0 else {
completion?(true)
return
}
// Save your data to do the job in background
let currentString = self.string
let substring = currentString.substring(range: range)
let mutableAttributedString = NSMutableAttributedString(string: substring, attributes: NSAttributedString.defaultAttributes as [NSAttributedString.Key : Any])
DispatchQueue.global(qos: .background).async {
ARSyntaxManager.tokens(text: substring, language: self.language) { (tokens) in
// Fill you attributed string
for token in tokens {
mutableAttributedString.addAttributes(token.attributes, range: token.range)
}
DispatchQueue.main.async {
// Check if there is no change
guard self.string.count == currentString.count else {
completion?(false)
return
}
completion?(true)
// Apply your change
self.storage.replaceCharacters(in: range, with: mutableAttributedString)
self.displayVisibleRect()
}
}
}
}
就是这样。希望对您有所帮助。
答案 1 :(得分:0)
我找到了解决方案。我必须在didProcessEditing
中使用NSTextStorageDelegate
方法,而不是didChangeText
。