TestFlight灰度测试方案
作者:
古月思吉 | 来源:发表于
2019-07-11 10:53 被阅读0次

TestFlight灰度测试方案.png
- (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];
}
}
本文标题:TestFlight灰度测试方案
本文链接:https://www.haomeiwen.com/subject/worrkctx.html
网友评论