tags:

views:

35

answers:

1

Hello All ,

How to find out the app installed or not in device.Thanks in advance.

Regards, Arunkumar.P

+1  A: 

It's possible if the app you want to check has registered a custom URL pattern. Then you'll be able to see if it's installed using:

[[UIApplication sharedApplication] canOpenURL:@"appscheme://installed"];
JoostK