0

在 iOS 9 之后,我曾经使用下一部分代码检查我的应用程序是否与我的服务器连接,如果没有响应,我要求用户激活 wifi 等。

显示对话框的警报:

    #pragma mark - SHOW ALERTVIEW FOR IOS 7 or less AND IOS 8
-(void) alertNoInternet:(NSString*)alertTitle withMessage:(NSString *)alertMessage{

    NSString *alert3gButtonText = @"Mobile Data";
    NSString *alertWifiButtonText = @"WIFI";
    NSString *alertCancelButtonText = @"Cancel";


    if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO( NSFoundationVersionNumber_iOS_8_0 ) ) {
        NSLog(@"SQA: iOS 8 dialog process");
        /*id rootViewController = [UIApplication sharedApplication].delegate.window.rootViewController;
         if([rootViewController isKindOfClass:[UINavigationController class]])
         {
         rootViewController = [((UINavigationController *)rootViewController).viewControllers objectAtIndex:0];
         }*/

        UIAlertController *alertController = [UIAlertController alertControllerWithTitle:alertTitle
                                                                                 message:alertMessage
                                                                          preferredStyle:UIAlertControllerStyleActionSheet];
        //We add buttons to the alert controller by creating UIAlertActions:
        UIAlertAction *action3g = [UIAlertAction actionWithTitle:alert3gButtonText
                                                           style:UIAlertActionStyleDefault
                                                         handler:^(UIAlertAction * action)
                                   {
                                       NSURL *urlCellular = [NSURL URLWithString:@"prefs:root=General&path=USAGE/CELLULAR_USAGE"];

                                       if([[UIApplication sharedApplication] canOpenURL:urlCellular]) {
                                           [[UIApplication sharedApplication] openURL:urlCellular];
                                       }


                                       [alertController dismissViewControllerAnimated:YES completion:nil];
                                       //home button press programmatically
                                       UIApplication *app = [UIApplication sharedApplication];
                                       [app performSelector:@selector(suspend)];

                                       //wait 2 seconds while app is going background
                                       [NSThread sleepForTimeInterval:2.0];

                                       //exit app when app is in background
                                       exit(0);
                                   }];

        //We add buttons to the alert controller by creating UIAlertActions:
        UIAlertAction *actionWifi = [UIAlertAction actionWithTitle:alertWifiButtonText
                                                             style:UIAlertActionStyleDefault
                                                           handler:^(UIAlertAction * action)
                                     {
                                         NSURL *urlWifi = [NSURL URLWithString:@"prefs:root=WIFI"];

                                         if ([[UIApplication sharedApplication] canOpenURL:urlWifi]) {
                                             [[UIApplication sharedApplication] openURL:urlWifi];
                                         }

                                         [alertController dismissViewControllerAnimated:YES completion:nil];
                                         //home button press programmatically
                                         UIApplication *app = [UIApplication sharedApplication];
                                         [app performSelector:@selector(suspend)];

                                         //wait 2 seconds while app is going background
                                         [NSThread sleepForTimeInterval:2.0];

                                         //exit app when app is in background
                                         exit(0);
                                     }];


        //We add buttons to the alert controller by creating UIAlertActions:
        UIAlertAction *actionCancel = [UIAlertAction actionWithTitle:alertCancelButtonText
                                                               style:UIAlertActionStyleCancel
                                                             handler:^(UIAlertAction * action)
                                       {
                                           [alertController dismissViewControllerAnimated:YES completion:nil];
                                           //home button press programmatically
                                           UIApplication *app = [UIApplication sharedApplication];
                                           [app performSelector:@selector(suspend)];

                                           //wait 2 seconds while app is going background
                                           [NSThread sleepForTimeInterval:2.0];

                                           //exit app when app is in background
                                           exit(0);
                                       }];


        //[alertController addAction:action3g];
        [alertController addAction:actionWifi];
        [alertController addAction:actionCancel];
        [self presentViewController:alertController animated:YES completion:nil];
    }

    if (SYSTEM_VERSION_LESS_THAN(NSFoundationVersionNumber_iOS_7_0) ) {
        NSLog(@"SQA: iOS 7 or less dialog process");

        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:alertTitle
                                                            message:alertMessage
                                                           delegate:nil
                                                  cancelButtonTitle:alertCancelButtonText
                                                  otherButtonTitles:alertWifiButtonText, nil];
        alertView.tag = TAG_ALERT_NOINTERNET;
        [alertView show];
    }
}

这是检查连接的源代码:

- (void)checkInternet:(connection)block
{
    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;

    NSURL *url = [NSURL URLWithString:@"http://www.tempdevserver.com/"];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    request.HTTPMethod = @"HEAD";
    request.cachePolicy = NSURLRequestReloadIgnoringLocalAndRemoteCacheData;
    request.timeoutInterval = 10.0;

    [NSURLConnection sendAsynchronousRequest:request
                                       queue:[NSOperationQueue mainQueue]
                           completionHandler:
     ^(NSURLResponse *response, NSData *data, NSError *connectionError)
     {
         [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
         block([(NSHTTPURLResponse *)response statusCode] == 200);
     }];
}

现在,在 iOS 9 上,总是显示对话框,并且永远不会让我从那里通过。发生了什么变化?

4

1 回答 1

2

这是完美的解决方案,可能对您有所帮助。

**in your Appdelegate.m File**

//Check Internet Plugin
#include<unistd.h>
#include<netdb.h>
/////

#pragma mark Check Internet connection
-(BOOL)checkInternetConnection {

    char *hostname;
    struct hostent *hostinfo;
    hostname = "google.com";
    hostinfo = gethostbyname (hostname);
    if (hostinfo == NULL)
    {
        NSLog(@"-> no connection!\n");
        return NO;
    }
    else{
        NSLog(@"-> connection established!\n");
        return YES;
    }
}

试试上面的代码,它运行良好且完美。

于 2015-10-19T09:39:23.540 回答