使用Swift在NSTextField中进行拼写

时间:2016-02-28 16:53:21

标签: swift macos nstextfield spelling

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

1 个答案:

答案 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根本不支持拼写检查,我可以说。

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