How can I determine if the user of an iOS device has a specific application installed? If I know the name of the application can I use canOpenURL somehow?
How can I determine if the user of an iOS device has a specific
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the application supports a custom url scheme you can check
UIApplication-canOpenURL:. That will tell you only that an application able to open that url scheme is available, not necessarily which application that is. There’s no publicly available mechanism to inspect what other apps a user has installed on their device.If you control both apps you might also use a shared keychain or pasteboard to communicate between them in more detail.