I have a problem with the Appdelegate OpenURL method.
I set my imported UTI and document type. But when I open my application from the email application, the application immediately fires when I have an implemented method.
Canceled handleOpenURL works, but not OpenURL?
At the moment, I have no code in the implementation, and I'm just returning true.
func application(application: UIApplication, openURL url: NSURL, sourceApplication: String, annotation: AnyObject?) -> Bool { return true }
Failure says Thread 1: EXC_BAD_ACCESS (code-1, address-0x0)
I really don't want to use the deprecated method.
source share