1

Possible Duplicate:
get list of installed applications on iphone objective-c

Is it possible to get to installed app list on iPhone device.. if possible how can i get applications list that are installed in iPhone

thanks,

Community
  • 1
  • 1
Nookaraju
  • 1,668
  • 13
  • 24

2 Answers2

3

No you can not do this with public api. You could create a list of url schemes and test if the app can open them but some apps does not have url schemes.

Alex Terente
  • 12,006
  • 5
  • 51
  • 71
1

No it is not. Because it is handled by apple's private api's. Well this can be tried on Jailbroken devices anyways.

Anyways, you can check if a specific application is installed on device using appdelegate's canopenurl method. That will take the URL of the method & if it is there in app you can open that application via your application.

Hope it helps.

iCreative
  • 1,499
  • 1
  • 9
  • 22