ios 5.1でReachabilityを使用しようとしていますが、Match-o Linkerエラーが発生します。 私はXcode 4.3を使用しており、armv6とarmv7でアプリケーションをビルドしています。 Reachabilityがarmv7でうまく動かないことが原因で、このエラーが発生する可能性があります。本当? もしそうなら、私のアプリがインターネット接続をチェックするための回避策はありますか? とはい、私は両方のiOS 5.1 Reachability
Reachability.h
と
SystemConfiguration.framework
私のサンプル実装コードは以下のようにされてインポートされている:advcanceで
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkNetworkStatus:) name:kReachabilityChangedNotification object:nil];
internetReachable = [Reachability reachabilityForInternetConnection];
[internetReachable startNotifier];
hostReachable = [Reachability reachabilityWithHostName: @"www.apple.com"];
[hostReachable startNotifier];
感謝を!
NSNotificationCenterの代わりにブロックを使用することもできます –
私は試してみましょう!ありがとう – lsp
元のReachabilityの問題は私のために働いていない、それはネットワーク到達不能通知を引き起こしていなかった。このlibはうまく動作します!ありがとう –