如何使用swift检查NSTextField
的拼写?我已经在使用controlTextDidChange
来验证文本。 This solution似乎提到将第一个响应者投射为NSTextView
,但我不确定是否可以迅速使用强制。我知道如果我改为NSTextView
会更容易,但如果可能的话,我想避免这种情况。
答案 0 :(得分:1)
这应该会帮助你。
// Focus TextField
phraseTextField.becomeFirstResponder()
// Enable Continous Spelling
let textView: NSTextView = (self.window!.firstResponder as! NSTextView)
textView.continuousSpellCheckingEnabled = true
改编自:How do I enable spell checking within an NSTextField on Mac OS X?
在其他情况下,将NSTextField
更改为NSTextView
可能会更好。只需使用"文本视图" (在对象库中搜索NSTextView)默认情况下将启用拼写检查。在某些情况下,NSTextFields根本不支持拼写检查,我可以说。