【发布时间】:2012-03-25 17:15:21
【问题描述】:
我有 2 个应用程序 application1 和 application2 注册了自定义 url。我无法按以下顺序启动这 2 个应用程序
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"abc://"]];
//where abc:// is the custom url of application1
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"xyz://"]];
////where xyz:// is the custom url of application2
这里第一个应用程序(即自定义 url abc://)成功启动,而第二个应用程序(即自定义 url xyz://)无法启动,即使代码在调试器中运行它。 非常感谢任何输入/帮助....
【问题讨论】:
标签: ios ios5 ios-simulator