通知中樞 NSNotificationCenter 的簡單使用方法,nsnotificationcenter

來源:互聯網
上載者:User

通知中樞 NSNotificationCenter 的簡單使用方法,nsnotificationcenter
NSNotificationCenter(通知中樞)
 【注意】需再dealloc中移除觀察者 擷取通知中樞單例對象

     NSNotificationCenter *center=[NSNotificationCenter defaultCenter];

 常用方法:     1.註冊觀察者     - (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;     參數:          observer: 觀察者          aSelector: 收到通知會自動調用此方法          aName: 訊息內容(接收通知的"暗號")          anObject: 一般為nil      2.發送通知訊息     - (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;     參數:          aName: 誰註冊了通知中樞,觀察者模式設定這個訊息內容,便通知誰          anObject: 傳送的參數(任意對象)          aUserInfo: 傳送的字典   NSNotification(若被通知者調用的方法中帶有參數,則傳遞此對象過來) 常用方法:     1.擷取傳遞的參數     - (id)object;      2.擷取傳遞的字典

     - (NSDictionary *)userInfo;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.