在macOS 10.14上键入文本时,不会出现NSTextView游标

问题描述 投票:1回答:2

我在使用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。

有人有同样的问题或者可以解释我做错了什么吗?

谢谢。

swift macos appkit nstextview
2个回答
1
投票

经过一些研究,我发现我的问题更多的是使用NSTextView进行语法高亮显示。我知道这是一个很多macOS开发人员都在问的问题,并且有很多解决方案。这可能不是最好的,但这就是我解决这个问题的方法。

NSTextStorage

为此,我使用了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()
    }

}

这是创建文本存储的基础。

NSTextStorage + NSTextView

下一步是将文本存储设置为textView。为此,您可以使用textView replaceTextStorage()中可访问的layoutManager方法。

class SyntaxTextView: NSTextView {

    var storage: SyntaxTextStorage!

    override func awakeFromNib() {
        super.awakeFromNib()
        configureTextStorage()
    }

    private func configureTextStorage() {
        storage = SyntaxTextStorage()
        layoutManager?.replaceTextStorage(storage)
    }

}

Syntaxing

最后一步是完成语法工作。这个过程的CPU成本非常高。有很多方法可以做到最好的表现。我建议你实现一个类,它会返回一个NSAttributedStringNSRange的列表。文本存储的工作应该只是将样式应用于您的文本。就个人而言,我使用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()
            }
        }
    }
}

而已。希望它会帮助你们中的一些人。


0
投票

我找到了解决方案。我必须在didProcessEditing中使用NSTextStorageDelegate方法而不是didChangeText

© www.soinside.com 2019 - 2024. All rights reserved.