URL Scheme on iOS
#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.
Comments