與通知相關(guān)的倆個(gè)角色:觀(guān)察者(Observer)---就是接受消息的對(duì)象
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 發(fā)送者(poster)
方法 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];
selector---處理notification的方法
name:notification的name。就是我(observer)接受這個(gè)notification
object:我(observer)接受這個(gè)object發(fā)送的這個(gè)notification