iphone訊息通訊機制NSNotificationCenter

來源:互聯網
上載者:User

 

NSNotificationCenter是專門供程式中不同類間的訊息通訊而設定的,使用起來極為方便,

長話短說。

設定通知,就是說要在什麼地方(哪個類)接受通知,一般在初始化中做。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(test:) name:@" test" object:nil];

我僅對以上參數做以說明:

addObserver 這個是觀察者,就是說 在什麼地方接收通知;

 selector 這個是收到通知後,調用何種方法;

 name: 這個是通知的名字,也是通知的唯一標示,編譯器就通過這個找到通知的。

發送通知,就是說此時要調用觀察者處的方法。

[[NSNotificationCenter defaultCenter] postNotificationName:@"test" object:searchFriendArray];

我僅對以上參數做以說明:

postNotificationName:通知的名字,也是通知的唯一標示,編譯器就通過這個找到通知的。

object:傳遞的參數

發送通知時,預設調用test方法。

- (void) test:(NSNotification*) notification

{

searchFriendArrary = [notification object];//通過這個擷取到傳遞的對象

}

=========================================================

例::

=========================================================

@implementation chuanzhenAppDelegate

-(void) onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag

{

    //根據接收到的不同,來發送不同的訊息。此處發送Login

    [[NSNotificationCenter defaultCenter]postNotificationName:@"Login" object:self];

}

另一BeforeRootViewController.m裡。

- (void)viewDidLoad {

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(DidLogin) name:@"Login" object:nil];

}

-(IBAction) LoginClick

{

..............

}

  摘自軟若石

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.