码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-开发技巧-三种收起键盘的方法

时间:2015-08-11 18:42:03      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

 

技术分享
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    
    UITextField *textField=[[UITextField alloc]initWithFrame:CGRectMake(10, 100, 200, 200)];
    textField.backgroundColor=[UIColor redColor];
    [self.view addSubview:textField];
    
}

//第一种收起键盘的方法
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [self.view endEditing:YES];
}
//第二种收起键盘的方法
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];
}
//第三种收起键盘的方法
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
}
技术分享

 

 

参考资料: 《iOS开发进阶》 -唐巧

版权声明:本文为博主原创文章,未经博主允许不得转载。

iOS-开发技巧-三种收起键盘的方法

标签:

原文地址:http://blog.csdn.net/fanqingtulv/article/details/47424451

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!