iOS4应用功能和其他应用的推出

时间:2011-04-25 21:23:42

标签: ios4

我想开发一个可以打开我从iTunes商店下载的其他原生应用的应用。可以这样做吗?

如果是这样,当我关闭第二个应用程序时,我将在哪里返回,桌面或我打开它的应用程序?

1 个答案:

答案 0 :(得分:0)

如果其他应用支持自定义网址方案,您可以启动它们:

http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneosprogrammingguide/StandardBehaviors/StandardBehaviors.html

NSURL *myURL = [NSURL URLWithString:@"customappurlscheme://www.stackoverflow.com?question=123"];
[[UIApplication sharedApplication] openURL:myURL];