將觀察者新增到網路更改中

當網路狀態發生變化時,Reachability 使用 NSNotification 訊息向觀察者發出警報。你的類需要成為一名觀察員。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];

在你的類的其他地方,實現方法簽名

- (void) reachabilityChanged:(NSNotification *)note {
    //code which reacts to network changes
}