我有一个应用程序,其中有一个“评价”应用程序的按钮。
单击按钮,我使用以下代码。
- (IBAction)ratePressed:(id)sender
{
NSString *str = @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa";
str = [NSString stringWithFormat:@"%@/wa/viewContentsUserReviews?", str];
str = [NSString stringWithFormat:@"%@type=Purple+Software&id=", str];
// Here is the app id from itunesconnect
str = [NSString stringWithFormat:@"%@appid", str];
NSLog(@"str is %@",str);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
}
我的应用程序不在应用程序商店中,所以当我按下费率按钮时,它会给我一个错误说
您的请求产生了错误。 [new NullResponse]
当我把应用程序的appid放在appstore上时。它工作正常。
那么我可以将自定义消息说“app当前不可用”吗?当应用程序不在appstore上时。或者它是Apple的默认消息?
请帮帮我。