初始化 reachabilty
self.reachability = [Reachability reachabilityForInternetConnection];
** [[NSNotificationCenter defaultCenter ]addObserver:self selector:@selector(change) name:kReachabilityChangedNotification object:nil ];
[self.reachability startNotifier];开启 网络监测
[self change];*方法调用*
利用通知中心用来监听我们的网络监测
reachabilty
有三个参数
1,NotReachable 没有网络
2,ReachableViaWiFi wifi连接
3,ReachableViaWWAN 3G/4G连接
最后调用 自我销毁方法 dealloc 把self.reachability 关闭
[[NSNotificationCenter defaultCenter]removeObserver:self];
把通知中心方法