Can I launch one app from other app on iPhone

安稳与你 提交于 2019-11-27 11:41:13

问题


I want to create app which have to launch another app and run some features in last.

I mean my app A call app B and run in B some method.

Can I do this?

I know that I want to use URL scheme, but can I run some method in another app?

Thanks!


回答1:


Yes you can achieve this using custom URL Schemes. See Communicating with Other Apps.

App B will need to register a custom URL Scheme which App A uses to launch B and pass it commands.

The following code fragment illustrates how one app can request the services of another app. “todolist” in this example is a hypothetical custom scheme registered by App B.

NSURL *myURL = [NSURL URLWithString:@"todolist://www.acme.com?Quarterly%20Report#200806231300"];
[[UIApplication sharedApplication] openURL:myURL];



回答2:


No..apple is very strict about this kind of thing. The ios sandbox designe doesn't allow this anyway.The only way i can think of doing this is to pop an alert view and ask the user very nicely to do it :) ....either that or call a server and do your method on that server but triggering methods from an app to another is a sure No-No. Hell...you can't even detect what apps the user has installed...



来源:https://stackoverflow.com/questions/10149129/can-i-launch-one-app-from-other-app-on-iphone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!