Reputation: 3083
I was trying to go through documentation but I am not able to see If Apple has mentioned anywhere that URI Scheme is deprecated?
Is there any cons of using URI scheme in iOS 13?
Edit: Deeplink with URL Scheme in my application was working totally fine for iOS 12 and it stopped working for me in iOS 13.
Upvotes: 0
Views: 4162
Reputation: 1195
If you are using the new SceneDelegate, I used scene(_:openURLContexts:). Previously handling URL Schemes was done in the AppDelegate.
See here: https://developer.apple.com/documentation/uikit/uiscenedelegate/3238059-scene
Upvotes: 6