码迷,mamicode.com
首页 > 其他好文 > 详细

点击背景键盘退下

时间:2015-04-26 10:48:28      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

- (void)viewDidLoad
{
    [super viewDidLoad]; 
    [self addTapForView];

}

- (void)addTapForView {
    
    UITapGestureRecognizer *tapGestureRecognizer =[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(backupgroupTap:)];
    tapGestureRecognizer.numberOfTapsRequired =1;
    [self.view addGestureRecognizer:tapGestureRecognizer];
    [tapGestureRecognizer setCancelsTouchesInView:NO];
}

-(void)backupgroupTap:(id)sender{
    [self.view endEditing:YES];
}

  

点击背景键盘退下

标签:

原文地址:http://www.cnblogs.com/songxing10000/p/4457364.html

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