iPad または iPhone が特定の WiFi 範囲外に出たことを検出するイベントまたはその他の方法はありますか。これを検索したところ、到達可能性クラスしか見つかりませんでした。また、バックグラウンドで接続を継続的にチェックする必要がありますが、これは私の場合は好まれません。どんな助けでも大歓迎です...
質問する
481 次
2 に答える
2
これは、wifi/インターネットの接続性を見つけるために使用できるサンプル コードです。
.h ファイル
@class Reachability;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
Reachability* wifiReach;
}
.m ファイル
**
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
self.viewController = [[HPViewController alloc] initWithNibName:@"HPViewController_iPhone" bundle:nil];
} else {
self.viewController = [[HPViewController alloc] initWithNibName:@"HPViewController_iPad" bundle:nil];
}
_navCon =[[UINavigationController alloc] initWithRootViewController:self.viewController];
self.window.rootViewController = _navCon;
// Observe the kNetworkReachabilityChangedNotification. When that notification is posted, the
// method "reachabilityChanged" will be called.
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(reachabilityChanged:) name: kReachabilityChangedNotification object: nil];
//Change the host name here to change the server your monitoring
wifiReach = [[Reachability reachabilityForLocalWiFi] retain];
[wifiReach startNotifier];
[self showAlertOfInternetConncetion: wifiReach];
return YES;
}
//Called by Reachability whenever status changes.
- (void) reachabilityChanged: (NSNotification* )note
{
Reachability* curReach = [note object];
NSParameterAssert([curReach isKindOfClass: [Reachability class]]);
[self showAlertOfInternetConncetion: curReach];
}
- (void)showAlertOfInternetConncetion : (Reachability*) curReach
{
NetworkStatus netStatus = [curReach currentReachabilityStatus];
switch (netStatus)
{
case NotReachable:
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Internet connection" message:@"Your internet connection has stopped working. Please check it." delegate:self cancelButtonTitle:nil otherButtonTitles:@"Exit App", nil];
[alert show];
[alert release];
}
case ReachableViaWWAN:
{
NSLog(@"ReachableVia WWAN");
}
case ReachableViaWiFi:
{
NSLog(@"ReachableVia WiFi");
}
}
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0) {
exit(0);
}
}
**
于 2012-12-19T10:53:26.437 に答える
0
Apple の SCNetworkReachability クラスを使用します。SCNetworkReachabilityのドキュメントを読んでください。以下を使用してテストします。
(ReachabilityInst.currentReachabilityStatus().value == ReachableViaWiFi.value)
于 2016-02-11T08:19:21.813 に答える