美文网首页
在ScrollView上的TextFiled隐藏键盘

在ScrollView上的TextFiled隐藏键盘

作者: 韩叨叨 | 来源:发表于2018-08-16 11:32 被阅读3次
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(touchesBegan)];
    [self.view addGestureRecognizer:tap];
    
    -(void)touchesBegan{
      [self.view endEditing:YES];
    }
    

    给scrollView上添加手势

    相关文章

      网友评论

          本文标题:在ScrollView上的TextFiled隐藏键盘

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