我有时必须检查互联网连接并为此使用“可达性”。
使用“可达性”手动检查互联网连接会更好,例如:
BOOL status = ([[Reachability reachabilityForInternetConnection] currentReachabilityStatus] != NotReachable);
或使用可达性通知和
//Start listening for reachability notifications on the current run loop
- (BOOL) startNotifier;
通知是否需要一些电话资源,例如电池等,如果我不使用“stopNotifier”,我会遇到一些问题吗?
谢谢