user1169079
user1169079

Reputation: 3083

URI scheme in iOS13 is deprecated?

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

Answers (1)

adamfootdev
adamfootdev

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

Related Questions