自学IOS之NSNotification的用法

与通知相关的俩个角色:观察者(Observer)---就是接受消息的对象

                                  发送者(poster)


方法 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];

selector---处理notification的方法

name:notification的name。就是我(observer)接受这个notification

object:我(observer)接受这个object发送的这个notification

参考1

基本原理



你可能感兴趣的:(自学IOS之NSNotification的用法)