使用Swift在NSTextField中进行拼写

如何使用
swift检查NSTextField的拼写?我已经在使用controlTextDidChange来验证文本.
This solution似乎提到将第一个响应者作为NSTextView进行投射,但我不确定swift使用强制是否可行.我知道如果我改为NSTextView会更容易,但如果可能的话,我想避免这种情况. 最佳答案 这应该可以帮到你.

// 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更改为NSTextViews可能会更好.只需使用“文本视图”(在对象库中搜索NSTextView),拼写检查将默认打开.在某些情况下,NSTextFields根本不支持拼写检查,我可以说.

另请参阅:https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSTextView_Class/#//apple_ref/doc/uid/20000373-SW55

点赞