我已使用iRate類添加'評價我的應用'功能。我已經添加了我的應用程序包ID。但是當我運行該應用程序時,它顯示「無法連接到iTunes Store」。請幫我找出問題。在iOS中爲此應用評分
這是我使用的代碼:
-(void)applicationWillEnterForeground:(UIApplication *)application
{
NSUserDefaults *times=[NSUserDefaults standardUserDefaults];
int test=[[times objectForKey:@"time"]intValue];
NSLog(@"test..:%d",test);
if (test >=5) {
[iRate sharedInstance].applicationBundleID = @"com.01Synergy";
[iRate sharedInstance].onlyPromptIfLatestVersion = NO;
//enable preview mode
[iRate sharedInstance].previewMode = YES;
}
}
- (void)applicationDidEnterBackground:(UIApplication *)application {
NSUserDefaults *times=[NSUserDefaults standardUserDefaults];
int time=[[times objectForKey:@"time"]intValue];
if (time<5) {
time++;
[times setInteger:time forKey:@"time"];
}
}
您的應用程序已經在AppStore上了嗎? –
在我的應用程序中,我提供了另一個已在商店中可用的應用程序的參考。 –
顯示代碼.. – NAZIK