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