Deeplinking from TopShelf not working in GM?

I have implemented deep links into the app from the TopShelf, which work fine on Xcode Beta 3. When I compile the app using the GM version of Xcode it no longer works.


This

func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool

isn't called anymore?


Literally comiling on beta 3 works, compiling on the GM doesn't. Anyone else seeing this behaviour? Is it fixable?


Thanks

Glad im not the only one, I onmly just tried the deep linking in the GM release and mine does not work either

That delegate method is not available on tvOS and is also deprecated, please use the latest method:


-application:openURL:options:

Brilliant, that worked for me thank you

Deeplinking from TopShelf not working in GM?
 
 
Q