tags:

views:

44

answers:

1

Hello All,

How to find the app is installed in device. Thanks in Advance

Regards,

Arunkumar.P

+2  A: 

If you look for an application that registers a URL scheme that it can open, then you can check for the presence of that app using the UIApplication -canOpenURL: method, as documented here: Apple Docs ; otherwise it is not possible normally from the SDK.

Istvan