首页 > 移动平台 > 详细

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

时间:2015-08-11 18:40:50      阅读:294      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!