有以下几点:
// watch the fields
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleTextChange:)
name:UITextFieldTextDidChangeNotification
object:textField1];
进而:
-(void) handleTextChange:(NSNotification *)notification {
...
}
在 中有一个断点-handleTextChange:
,但不会被解雇。textField 在 Interface Builder 中连接。
适用于 iOS6 iPhone/iPad 模拟器,适用于 iOS5.1 iPad2,但不适用于 iOS6 iPad3。