[[NSNotificationCenter defaultCenter] addObserver:strongSelf selector:@selector(editviewBeginEdit:) name:UITextFieldTextDidBeginEditingNotification object:nil];
- (void)editviewBeginEdit:(NSNotification *)notification
{
NSLog(@"%s, notification = %@", __func__, notification);
UIView *editingView = notification.object;
NSLog(@"editingView = %@", editingView);
}
网友评论