tener lo siguiente:UITextFieldTextDidChangeNotification no consigue un llamado a iOS6 ipad3
// watch the fields
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleTextChange:)
name:UITextFieldTextDidChangeNotification
object:textField1];
y luego:
-(void) handleTextChange:(NSNotification *)notification {
...
}
Tener un punto de interrupción en -handleTextChange:
, pero no ser despedido. textField está conectado en el Interface Builder.
Obras en simulador de iOS 6 iPhone/iPad, iPad2 en iOS5.1, pero no en iOS6 iPad3.
donde puede encontrar algo similar que funcione en ios6? – Marco