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

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上架前下载地址)