与通知相关的俩个角色:观察者(Observer)---就是接受消息的对象
发送者(poster)
方法 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];
selector---处理notification的方法
name:notification的name。就是我(observer)接受这个notification
object:我(observer)接受这个object发送的这个notification