次のものがあります。
// 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 では動作しません。