当用户在任何 NSTextField 中输入内容时,我一直在尝试调用 Swift Cocoa 应用程序中的函数。NSTextField 是在运行时生成的。这是我的尝试:
func OnUserInput(sender: NSTextfield){
CheckEntry(sender.stringValue)
}
init (){
// Create NSTextField's
//for every NSTextField (nsTextField)
nsTextField.sendAction("OnUserInput:", to: nil)
}
有谁知道为什么没有调用该函数?