in my app i will check/search - if some Special apps are installed.
for example, i want to know is the Amazon-app or is the Facebook-app installed on the device (on which my app is running).
in B4A this is very easy - but in B4i...?
You cannot get a list of the installed applications in iOS.
However if you are looking for specific apps and those apps have registered unique url schemes then you can use App.CanOpenUrl to check if an app is installed.
B4X:
If App.CanOpenURL("fb://") Then
Log("Facebook is installed")
End If
I know the post is very old, but it is the one that told me how to check if the app is installed on iOS. I hope this list of applications helps the next developer who comes with that same question.