IOS-Controller中点击屏幕退出键盘

来源:互联网 发布:纹身贴纸淘宝 编辑:程序博客网 时间:2024/06/07 12:30
-(void)addNotification{    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];    UITapGestureRecognizer *singleTapGR =    [[UITapGestureRecognizer alloc] initWithTarget:self                                            action:@selector(tapAnywhereToDismissKeyboard:)];    NSOperationQueue *mainQuene =[NSOperationQueue mainQueue];    [nc addObserverForName:UIKeyboardWillShowNotification                    object:nil                     queue:mainQuene                usingBlock:^(NSNotification *note){                    [self.view addGestureRecognizer:singleTapGR];                }];    [nc addObserverForName:UIKeyboardWillHideNotification                    object:nil                     queue:mainQuene                usingBlock:^(NSNotification *note){                    [self.view removeGestureRecognizer:singleTapGR];                }];}
- (void)tapAnywhereToDismissKeyboard:(UIGestureRecognizer*)gestureRecognizer {    //此method会将self.view里所有的subview的first responder都resign掉    [inputField resignFirstResponder];    starSuperView.hidden  =YES;}
阅读全文
0 0