我有一个 ViewController(ViewController.m,它通过 web 服务加载数据。这些方法包含在 GetHTTP.m 中。
在 GetHTTP.m 中,我已包含在Reachable.h
Internet 连接断开时收到通知。
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(checkNetworkStatus:)
name:kReachabilityChangedNotification object:nil];
但是如何从我的 GetHTTP::checkNetworkStatus 方法中发出警报,因为所有视图都在我的 ViewController.m 类中?
可能我可以在 ViewController 类中使用一个方法作为我的选择器的目标,但是我从多个 ViewController 调用 GetHTTP,因此每次从另一个 ViewClass 调用选择器目标时都必须更改它。
也许我错过了一个简单的 MVC 规则?
提前致谢。基督教