I am registering an application to handle being opened via URL and am confused with
application:openURL:sourceApplication:annotation
According to the documentation you should return YES if you can support the URL and NO if not. What good does this do though? I am returning NO in the event that the URL is malformed or unsupported but the app still opens as if nothing went wrong. Who listens for that BOOL
return and what do they do with it? Is there anyway to prevent the app from opening if the URL is is malformed or not supported?