Last updated 1 min read

URL Scheme on iOS

Related: iOS App Development.


Deep link are Apple-specific links of the following format:

com.myApp://profile?user=”JuanFra”

url.scheme = “com.myApp”  
url.host = “profile”  
parameters = [ “user” : “JuanFra” ]

It won't work if the app is not install and will lead to nowhere.