Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the apps installed in iPhone

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. Please give me code snippet if possible otherwise a link to get the solution.

If this is possible, then how to disable the app also?

like image 226
Ajay Sharma Avatar asked Dec 02 '22 05:12

Ajay Sharma


1 Answers

You can't check for any application, but you can actually check for applications which officialy shared their url scheme.

You can find the biggest database of those url schemes here. Now, how to use? All that we'll need is UIApplication. First, we need check if the iOS can open specific url:

[[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"fb://profile"]];

If this method returns yes then the user has the facebook application installed. To open the following application you need to call:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"fb://profile"]];

Which will open your Facebook profile on the Facebook application.

Alas, there is no possibility of disabling any other application on the iOS, since each and every third party software is being sandboxed.

like image 91
Pawel Avatar answered Dec 06 '22 00:12

Pawel