美文网首页
点击tableview的时候隐藏键盘

点击tableview的时候隐藏键盘

作者: Minoz_min | 来源:发表于2016-07-13 17:08 被阅读38次

点击tableview的时候隐藏键盘


- (void)viewDidLoad {
    [super viewDidLoad];
    
    UITapGestureRecognizer *tapGes = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hideKeyboard)];
tapGes.cancelsTouchesInView = false;
[self.tableView addGestureRecognizer:tapGes];
}

- (void)hideKeyboard
{
    [self.textfieldUsername resignFirstResponder];
}

相关文章

网友评论

      本文标题:点击tableview的时候隐藏键盘

      本文链接:https://www.haomeiwen.com/subject/iktejttx.html