Asks the delegate to open a resource specified by a URL, and provides a dictionary of launch options.
SDKs
- iOS 9.0+
- Mac Catalyst 13.0+
- tvOS 9.0+
Framework
- UIKit
Declaration
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplication Open URLOptions Key, id> *)options;
Parameters
app
Your singleton app object.
url
The URL resource to open. This resource can be a network resource or a file. For information about the Apple-registered URL schemes, see Apple URL Scheme Reference.
options
A dictionary of URL handling options. For information about the possible keys in this dictionary and how to handle them, see UIApplicationOpenURLOptionsKey. By default, the value of this parameter is an empty dictionary.
Return Value
YES
if the delegate successfully handled the request or NO
if the attempt to open the URL resource failed.
Discussion
This method is not called if your implementations return NO
from both the application:
and application:
methods. (If only one of the two methods is implemented, its return value determines whether this method is called.) If your app implements the application
method instead of application:
, this method is called to open the specified URL after the app has been initialized.
If a URL arrives while your app is suspended or running in the background, the system moves your app to the foreground prior to calling this method.
There is no equivalent notification for this delegation method.