how to check application installed application in iphone deveice using iphone sdk [closed]
I am developing an application in which i need to find the apps which are already installed in iphone device such as Skype, facebook. I need to check it using objective -c . Please give me code snippet if possible otherwise a link to get the solution. Is it possible or not.
Thanks in advance ....开发者_JAVA技巧..
Not directly possible using the SDK. If an application you're looking for 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.
This is not possible using any public API's.
精彩评论