美文网首页
Xcode真机测试包文件位置 App上架前下载地址

Xcode真机测试包文件位置 App上架前下载地址

作者: MoneyLee | 来源:发表于2017-04-10 13:25 被阅读261次

    Xcode 真机测试包文件地址
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

    app上架前获取下载地址
    https://itunes.apple.com/cn/app/id+(APP ID)

    1,跳转到App Store:
    NSString *str = [NSString stringWithFormat:@"http://itunes.apple.com/us/app/id%d", 1001065082];
    [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

    1001065082是App ID

    2,跳转到评价页面:
    NSString *str = [NSString stringWithFormat: @"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%d",436957167 ];
    [[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

    3,直接跳转到App Store:
    http://phobos.apple.com/。。。。

    向ipa包添加客户udid
    http://www.pgyer.com/doc/view/add_udid_to_app

    相关文章

      网友评论

          本文标题:Xcode真机测试包文件位置 App上架前下载地址

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