Can I launch one app from other app on iPhone

瘦欲@ 提交于 2019-11-28 18:48:58

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];

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...

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