1.添加观察者
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldChanged:) name:UITextFieldTextDidChangeNotification object:nil];
2.实现监听方法
- (void)textFieldChanged:(NSNotification *)noti {
}
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldChanged:) name:UITextFieldTextDidChangeNotification object:nil];
- (void)textFieldChanged:(NSNotification *)noti {
}