iOS 之点击背景退出键盘

来源:互联网 发布:彩票数据导出 编辑:程序博客网 时间:2024/05/22 06:13

原博地址:iOS 之点击背景退出键盘

注释:UITextFiled才有输入框,所以先建立一个UITextFiled对象,点击他会出现输入框,利用UITapGestureRescognizer 类实现操作,上代码:

.h文件中不用操作

//

//  LYXViewController.h

//  UITap

//

//  Created by liyongxing on 13-7-6.

//  Copyright (c) 2013 liyongxing. All rights reserved.

//


#import <UIKit/UIKit.h>


@interface LYXViewController : UIViewController


@end


在.m中创建对象

//

//  LYXViewController.m

//  UITap

//

//  Created by liyongxing on 13-7-6.

//  Copyright (c) 2013 liyongxing. All rights reserved.

//


#import "LYXViewController.h"


@interface LYXViewController ()


@property (nonatomic,strong) UITextField * text;


@end


@implementation LYXViewController


-(void)viewDidLoad

{

    [super viewDidLoad];

    

    //创建UITextField的对象,并给他定位制定大小,位置

    

    self.text = [[UITextField alloc]initWithFrame:CGRectMake(505020060)];

    

    //设置背景色,默认为透明色

    

    self.text.backgroundColor = [UIColor grayColor];

    

    //将对象添加到视图上

    

    [self.view addSubview:self.text];


    //调用点击背景方法

    

    [self tapGesture];

}


-(void)tapGesture

{

    //创建一个点击对象,并将其关联一个点击方法

    UITapGestureRecognizer * tapGestureRecognizer = [[UITapGestureRecognizer alloc]initWithTarget:selfaction:@selector(tapResign)];

    

    //设置点击多少次退出键盘,一般设置为1

    

    tapGestureRecognizer.numberOfTapsRequired = 1.0;

    

    //将点击对象添加到当前视图

    

    [self.view addGestureRecognizer:tapGestureRecognizer];

    

    //是否取消点击背景视图的动作,设置为否

    

    [tapGestureRecognizer setCancelsTouchesInView:NO];

    

}


//点击背景视图的时候发生的时间,退出第一响应者,到此就能完成我们想要的效果


-(void)tapResign

{

    

    [self.text resignFirstResponder];

    

}




- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


@end


转自:http://blog.csdn.net/u011199592/article/details/9260613


0 0
原创粉丝点击