zoukankan      html  css  js  c++  java
  • 关于iOS 点击空白处关闭键盘(手势)

    - (void)viewDidLoad

    {

        [super viewDidLoad];

        UITapGestureRecognizer *gesture=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(CloseKeyBoard:)];

        [self.view addGestureRecognizer:gesture];

    }

    -(void)CloseKeyBoard:(UITapGestureRecognizer *)gesture{

        for (id  object in self.view.subviews) {

            if ([object isKindOfClass:[UITextField class]]) {

                

                UITextField *textfield=object;

                

                if ([textfield isFirstResponder]) {

                      [textfield resignFirstResponder];

                }

                

            }

            

        }

        

      //[self.view endEditing:YES];

        

    }

  • 相关阅读:
    Linux系统服务
    Linux进程管理
    Linux压缩打包
    Linux输入输出
    Linux权限管理
    Linux用户管理
    Linux文件管理
    Linux-Shell
    Centos7 安装jdk1.8
    Python数据分析之路
  • 原文地址:https://www.cnblogs.com/zhibin/p/4114499.html
Copyright © 2011-2022 走看看