开发者

How to search and launch an already installed ipad application from another ipad application?

I am working on a iPad application which need to identify its related application is already installed in the iphone/ ipad. If it already installed in the device, i had to launch it from my application.

Can we do search in client iPad as the requested app have installed or not?

How to launch another application from my开发者_如何转开发 application.

Thanks!


No you cannot search for installed applications, but you can open another app via a custom URL scheme. There is no guarantee that there is not another app handling that particular scheme, though.

You might as well think about sharing data using the keychain.


You cannot directly check for the presence of another app, and you cannot directly launch another app.

But if the other app supports an URL scheme you can use -[UIApplication canOpenURL:] to check whether that URL scheme is supported (and thus the app is installed, if the URL scheme is sufficiently unique). You can then launch the other app via -[UIApplication openURL:].

If you need to exchange data that's too big to be passed via an URL parameter, use a UIPasteboard (if both apps are from you).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜