TestFlight灰度测试方案
2019-07-11 本文已影响0人
古月思吉

- 核心代码:
- (void)openBetaUrl {
// 公开链接的地址
NSString * betaUrl = @"testflight.apple.com/join/MIBiPIhj";
NSString * url = nil;
NSURL * customAppURL = [NSURL URLWithString:@"itms-beta://"];
if ([[UIApplication sharedApplication] canOpenURL:customAppURL]) {
url = [NSString stringWithFormat:@"itms-beta://%@",betaUrl];
customAppURL = [NSURL URLWithString:url];
[[UIApplication sharedApplication] openURL:customAppURL];
} else {
url = [NSString stringWithFormat:@"https://%@",betaUrl];
customAppURL = [NSURL URLWithString:url];
[[UIApplication sharedApplication] openURL:customAppURL];
}
}