TestFlight灰度测试方案

2019-07-11  本文已影响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];
    }
}
上一篇 下一篇

猜你喜欢

热点阅读