Swift version: 5.10
iOS lets you check for the existence of other apps, but you do need to declare them in your Info.plist file, and you may need to provide an explanation to the App Review team if you try to query too many apps or apps that aren’t yours.
The key here is to give each of your apps a custom URL scheme. So, your first app might use “myapp1://“, your second app might use “myapp2://”, and so on. You don’t actually need to use these URLs, and they ought to be unique, so you should make them prefixed with your company name to be sure.
To try it out, right-click on your Info.plist file and choose Open As > Source Code. The file should end like this:
</dict>
</plist>
I’d like you to paste this XML directly before those lines:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>myapp1</string>
<string>myapp2</string>
</array>
That registers two URL schemes, “myapp1://” and “myapp2://”, with iOS, which means you can now try to read them.
With that done, you can now add code like this to check whether the system is able to respond to “myapp1://” URLs:
UIApplication.shared.canOpenURL(URL(string: "myapp1://test")!)
If that returns true it means the app responsible for “myapp1://” is installed on the system, which means you know for sure the user has that other app installed.
Note: Even though you own both apps and could easily have replicated this finding using server analytics, doing it client-side might seem sketchy to some users. Be sensible and have a clear, complete privacy policy that says exactly what you want do.
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until February 9th.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 9.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.