As mentioned in @Mike K, you will have to implement one (or both) of the following methods:
- application:handleOpenURL: - application:openURL:sourceApplication:annotation:
in your UIApplicationDelegate. There is no corresponding notice for them.
Example below:
-(BOOL) application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { if (url != nil && [url isFileURL]) { [self.viewController handleOpenURL:url]; } return YES; }
source share