美文网首页
NSNotificationCenter键盘

NSNotificationCenter键盘

作者: gogo小小酥 | 来源:发表于2018-02-25 17:00 被阅读6次

 //监听键盘高度的变化

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];

//监听键盘高度的变化

[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];

[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];

//收起键盘

[[[UIApplicationsharedApplication] keyWindow] endEditing:NO];

相关文章

网友评论

      本文标题:NSNotificationCenter键盘

      本文链接:https://www.haomeiwen.com/subject/fwvrxftx.html