時々インターネット接続を確認し、この目的のために「到達可能性」を使用する必要があります。
次のような「到達可能性」を使用して手動でインターネット接続を確認することをお勧めします。
BOOL status = ([[Reachability reachabilityForInternetConnection] currentReachabilityStatus] != NotReachable);
または、到達可能性通知を使用して、
//Start listening for reachability notifications on the current run loop
- (BOOL) startNotifier;
通知にはバッテリーなどの電話リソースが必要ですか?「stopNotifier」を使用しないと問題が発生しますか?
ありがとう