在程序里打开另一个APP
1、首先,要在被打开的 APP 的 info.plist 文件里添加 URL types 并设置 URL Schemes,如下图所示:
2、在项目的 info.plist 文件里添加 LSApplicationQueriesSchemes 属性,并添加子 item 为被打开的 APP 的 URL Schemes,如下图所示:
3、在项目里使用如下代码打开另一个 APP
UIApplication *application = [UIApplication sharedApplication];
if ([application canOpenURL:[NSURL URLWithString:@"ABC://"]]) {
[application openURL:[NSURL URLWithString:@"ABC://"]];
}