NSString *ITMS_SERVICES = @"itms-services://?action=download-manifest&url=";
NSString *plist_URL = @"https://gitee.com/lishimayi/test_IPA/raw/master/ipa.plist";
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@",ITMS_SERVICES,plist_URL]];
[[UIApplication sharedApplication] openURL:url];
网友评论