I\'m trying to understand how to catch a \"text changed\" event from a text field in my window. I\'m used to Java\'s \"action listeners\", and can\'t find anything similar i
You can also just hook up to the "Editing Changed" from IB and create the Action to handle it
- (IBAction)txtField_Changed:(id)sender { // my textfield has been changed }