UIView綁定了廣播監(jiān)聽,綁定的位置和移除綁定的位置應(yīng)該放在什么地方。
- (void)willMoveToWindow:(UIWindow *)newWindow{
[super willMoveToWindow:newWindow];
if (self.window != nil) {
[[NSNotificationCenter defaultCenter]removeObserver:self];
}
}
- (void)didMoveToWindow {
if (self.window != nil) {
//添加鍵盤顯示與消失通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoWillAppear:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyBoWillDismiss:) name:UIKeyboardWillHideNotification object:nil];
}
}