NSTextfield.sendAction不调用函数

时间:2014-10-31 17:03:01

标签: xcode cocoa swift xcode6 nscontrol

当用户在任何NSTextField中输入内容时,我一直在尝试调用Swift Cocoa应用程序中的函数。 NSTextField是在运行时生成的。 这是我的尝试:

func OnUserInput(sender: NSTextfield){
CheckEntry(sender.stringValue)
}

init (){
// Create NSTextField's
//for every NSTextField (nsTextField)
nsTextField.sendAction("OnUserInput:", to: nil)
}

有谁知道为什么不调用该函数?

0 个答案:

没有答案