I need help with my top shelf items, adding the playURL and displayURL both open my app no problems but none of them are calling func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool. Because of this i can not parse the url and do something with it. Anyone got any ideas???
application openURL sourceApplication annotation not being called
That delegate method is not available on tvOS and is also deprecated, please use the latest method:
-application:openURL:options:
Perfect, this works, thank you very much
Me too -- I dunno why I had the old deprecated call in my brand-new TopShelf code, but it doesn't work in the GM. application:openURL:options: works.