Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Determine if an app exists and launch that app on iOS

Is there a way to check iOS to see if another app has been installed and then launched? If memory serves me this was not possible in early versions but has this been changed?

like image 999
Rob Avatar asked Apr 21 '11 15:04

Rob


People also ask

How do you know if an app is installed iOS?

Go to settings scroll down passed game centre then you see a list of apps. Go to i books download ios 11 user guide &iPhone 7 user guide both are free. As for checking what's installed / re-installing, though app store. In App store, click on the user icon top right of screen.

Can a website check if an app is installed?

Your website can check if your Android app is installed.

How do you know if an app has been installed?

On your Android phone, open the Google Play store app and tap the menu button (three lines). In the menu, tap My apps & games to see a list of apps currently installed on your device.


1 Answers

Doable, but tricky.

Launching installed apps, like the FB or Twitter apps, is done using the Custom URL Scheme. These can be used both in other apps as well as on web sites.

Here's an article about how to do this with your own app.

Seeing if the URL is there, though, can be tricky. A good example of an app that detects installed apps is Boxcar. The thing here is that Boxcar has advanced knowledge of the custom URL's. I'm fairly (99%) certain that there is a canOpenURL:, so knowing the custom scheme of the app you want to target ahead of time makes this simple to implement.

Here's a partial list of some of the more popular URL's you can check against.

There is a way to find out the custom app URL : https://www.amerhukic.com/finding-the-custom-url-scheme-of-an-ios-app

But if you want to scan for apps and deduce their URL's, it can't be done on a non-JB device.

Here's a blog post talking about how the folks at Bump handled the problem.

like image 78
Doug Stephen Avatar answered Sep 24 '22 05:09

Doug Stephen