can not connect to itune store while click on rating within application

164 views Asked by At

I would like to open app link in iTunes, while click on "rate this app" link. But issue is that

"can not proceed your request" or "can not connect to itune store".

It only happens in iPad mini. Otherwise works fine. Please anybody can solve this issue.

+ (void)rateApp {
#if TARGET_IPHONE_SIMULATOR
    NSLog(@"APPIRATER NOTE: iTunes App Store is not supported on the iOS simulator. Unable to open App Store page.");   
#else
    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];

    // added work arround for wrong URL Scheme used in new App store on iOS 6
    NSString *reviewURL;
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0) {
        reviewURL = [templateReviewURLiOS6 stringByReplacingOccurrencesOfString:@"APP_ID" withString:[NSString stringWithFormat:@"%d", APPIRATER_APP_ID]];

        reviewURL = [reviewURL stringByReplacingOccurrencesOfString:@"LANGUAGE" withString:[NSString stringWithFormat:@"%@", [[NSLocale preferredLanguages] objectAtIndex:0]]];
        NSLog(@"reviewURL: %@",reviewURL);

    } else {
        reviewURL = [templateReviewURL stringByReplacingOccurrencesOfString:@"APP_ID" withString:[NSString stringWithFormat:@"%d", APPIRATER_APP_ID]];
    }

    [userDefaults setBool:YES forKey:kAppiraterRatedCurrentVersion];
    [userDefaults synchronize];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:reviewURL]];
#endif
}
0

There are 0 answers