将观察者添加到网络更改中

当网络状态发生变化时,Reachability 使用 NSNotification 消息向观察者发出警报。你的类需要成为一名观察员。

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

在你的类的其他地方,实现方法签名

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