美文网首页
iOS11应用跳转到appstore评分

iOS11应用跳转到appstore评分

作者: 安安王子 | 来源:发表于2017-09-29 13:13 被阅读0次

    appid是在iTunesConnect创建应用时自动生成的ID

    1. 跳转到应用评价页 (百度上搜索iOS跳转应用商店评价,基本上都是以下方法,以下方法在iOS11以下使用没有任何问题,但是在iOS11上会提示无法连接)

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

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

    所以,建议大家跳转到评价页全部使用以下方法,兼容iOS所有版本

    NSString *urlStr = [NSString

    stringWithFormat:@"https://itunes.apple.com/us/app/itunes-u/id%@?action=write-review&mt=8",

    APPID];

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

    相关文章

      网友评论

          本文标题:iOS11应用跳转到appstore评分

          本文链接:https://www.haomeiwen.com/subject/xbriextx.html