iOS应用跳转到appstore评分,首页

传入第一次在itunesconnect创建应用时创建的appID

评分

  NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@&pageNumber=0&sortOrdering=2&mt=8", @""]; 



  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str2]];

跳转到首页

NSString *str2 = [NSString stringWithFormat: @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",  @""];

  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str2]];

你可能感兴趣的:(iOS应用跳转到appstore评分,首页)