Reading the documentation for UIApplicationDelegate - application:openURL:options
Return:
YES if the delegate successfully handled the request or NO if the attempt to open the URL resource failed.
What does returning YES
vs NO
impact? Is it just a convenience if you happen to be sub-classing your app delegate and might want to let super
handle the invocation? The return value doesn't seem to affect the behavior of UIApplication
itself in any obvoius way.