从UITextField,UITextView取消键盘作为UIScrollView的子视图? [英] dismissing the keyboard from a UITextField,UITextView as a subview of UIScrollView?

查看:99
本文介绍了从UITextField,UITextView取消键盘作为UIScrollView的子视图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个应用程序,其中添加了UIScrollView作为UIView的子视图.我已添加UITextFieldUITextview作为UIScrollView的子视图.我想在滚动视图中点击时关闭键盘.我该怎么办?

I have an application with UIScrollView added as a subview of UIView. i have added UITextField,UITextview as a subView of UIScrollView .I want to dismiss the keyboard when i tap in the scroll view. how can i do this?

推荐答案

只需添加UITapGestureRecognizer

- (void)viewDidLoad
{
    [super viewDidLoad];
    UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTapGestureCaptured:)];
    [scr addGestureRecognizer:singleTap];
}


- (void)singleTapGestureCaptured:(UITapGestureRecognizer *)gesture
{
    //Get touch point
    CGPoint touchPoint=[gesture locationInView:scr];

    //Hide keyBoard
    [self.view endEditing:YES];
}

这篇关于从UITextField,UITextView取消键盘作为UIScrollView的子视图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆