通知中心(NSNotificationCenter)ide
通知(NSNotification)post
- (NSString *)name; // 通知的名稱
- (id)object; // 通知發佈者(是誰要發佈通知)
- (NSDictionary *)userInfo; // 一些額外的信息(通知發佈者傳遞給通知接收者的信息內容)
+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject;
+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
- (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
發佈通知動畫
通知中心(NSNotificationCenter)提供了相應的方法來幫助發佈通知spa
- (void)postNotification:(NSNotification *)notification; //發佈一個notification通知,可在notification對象中設置通知的名稱、通知發佈者、額外信息等
- (void)postNotificationName:(NSString *)aName object:(id)anObject; //發佈一個名稱爲aName的通知,anObject爲這個通知的發佈者
- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo; //發佈一個名稱爲aName的通知,anObject爲這個通知的發佈者,aUserInfo爲額外信息
註冊通知監聽器代理
通知中心(NSNotificationCenter)提供了方法來註冊一個監聽通知的監聽器(Observer)code
//observer:監聽器,即誰要接收這個通知 //aSelector:收到通知後,回調監聽器的這個方法,而且把通知對象當作參數傳入 //aName:通知的名稱。若是爲nil,那麼不管通知的名稱是什麼,監聽器都能收到這個通知 //anObject:通知發佈者。若是爲anObject和aName都爲nil,監聽器都收到全部的通知 - (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
//name:通知的名稱 //obj:通知發佈者 //block:收到對應的通知時,會回調這個block //queue:決定了block在哪一個操做隊列中執行,若是傳nil,默認在當前操做隊列中同步執行 - (id)addObserverForName:(NSString *)name object:(id)obj queue:(NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block;
取消註冊通知監聽器server
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;
- (void)dealloc { //[super dealloc]; 非ARC中須要調用此句 [[NSNotificationCenter defaultCenter] removeObserver:self];
}
UIDevice通知對象
UIDeviceOrientationDidChangeNotification // 設備旋轉 UIDeviceBatteryStateDidChangeNotification // 電池狀態改變 UIDeviceBatteryLevelDidChangeNotification // 電池電量改變 UIDeviceProximityStateDidChangeNotification // 近距離傳感器(好比設備貼近了使用者的臉部)
鍵盤通知blog
UIKeyboardWillShowNotification // 鍵盤即將顯示 UIKeyboardDidShowNotification // 鍵盤顯示完畢 UIKeyboardWillHideNotification // 鍵盤即將隱藏 UIKeyboardDidHideNotification // 鍵盤隱藏完畢 UIKeyboardWillChangeFrameNotification // 鍵盤的位置尺寸即將發生改變 UIKeyboardDidChangeFrameNotification // 鍵盤的位置尺寸改變完畢
UIKeyboardFrameBeginUserInfoKey // 鍵盤剛開始的frame UIKeyboardFrameEndUserInfoKey // 鍵盤最終的frame(動畫執行完畢後) UIKeyboardAnimationDurationUserInfoKey // 鍵盤動畫的時間 UIKeyboardAnimationCurveUserInfoKey // 鍵盤動畫的執行節奏(快慢)
通知和代理的選擇隊列
利用通知和代理都能完成對象之間的通訊(好比A對象告訴D對象發生了什麼事情, A對象傳遞數據給D對象)