美文网首页
iOS跳转AppStore进行评分,看详情

iOS跳转AppStore进行评分,看详情

作者: 有缘人2830 | 来源:发表于2016-11-24 11:54 被阅读410次

    ***#pragma warning AppStore评分

    static NSString *APPID = @"xxxxxxxxx";//进开发者账号看ID
    

    //1.跳转到评论页面:itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@
    //2.跳转到详情页面: itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@

    NSString *appStoreUrl = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=%@",APPID];
    
    [[UIApplication **sharedApplication]openURL:[NSURL URLWithString:appStoreUrl]];
    

    相关文章

      网友评论

          本文标题:iOS跳转AppStore进行评分,看详情

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