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

文本框输入与键盘隐藏

时间:2015-09-01 16:27:48      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

//移除通知

- (void)dealloc {

    [[NSNotificationCenter defaultCenter]removeObserver:nil];

}

 

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view from its nib.

    //添加tap手势

    self.tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hidesKeyboard)];

    self.tapGesture.enabled = NO;//最开始手势设为no

    [self.view addGestureRecognizer:self.tapGesture];

 

    //键盘显示我用了通知结合手势来的

    //注册通知,

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWillShow)

                                                 name:UIKeyboardWillShowNotification

                                               object:nil];

}

 //隐藏键盘

- (void)hidesKeyboard{

    [self.view endEditing:YES];

    self.tapGesture.enabled = NO;

}

 // 完成通知的方法就是把手势设为yes即可

- (void)keyboardWillShow {

    self.tapGesture.enabled = YES;

}

 

文本框输入与键盘隐藏

标签:

原文地址:http://www.cnblogs.com/now-or-never/p/4775783.html

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