I want to check whether an app is present in my iphone or not. If it is present I want to launch it else open the App Store link of the app.
Please suggest the required
For opening an app from inside another app, you need to expose a URL scheme from the app you want to open.
If the app can be opened using openURL
function (which uses the custom URL scheme exposed), user can directly access your app.
If not, you can open app store app page using the openURL
function, supplying itunes app URL.
Here lies complete idea about how to achieve it.