您的位置:首页 > 移动开发 > IOS开发

IOS疯狂基础之NSNotificationCenter消息注册与撤销

2013-03-07 21:45 441 查看
注册:UIKeyboardWillShowNotification 每次发生该事件 则调用keyboardWillShow

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

撤销:

[[NSNotificationCenter
defaultCenter]
removeObserver:self
name:UIKeyboardWillShowNotification
object:nil ];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: