- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(myReachabilityDidChangedMethod)
name:kReachabilityChangedNotification
object:nil];
Reachability *reachability;
reachability = [Reachability reachabilityForInternetConnection];
[reachability startNotifier];
我的 AppDelegate 中有上面的代码块,用于创建可达性观察者,旨在通过应用程序触发 myReachabilityDidChangedMethod。
但是,无法触发位于 AppDelegate 中的 myReachabilityDidChangedMethod,当我打开或关闭我的 wifi 时,我在模拟器和 ipad 上都对其进行了测试,但两者都没有任何响应。