UIApplicationDelegate_Extensions.FinishedLaunching Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FinishedLaunching(IUIApplicationDelegate, UIApplication, NSDictionary) |
Indicates that launching has finished and the app will shortly begin running. |
FinishedLaunching(IUIApplicationDelegate, UIApplication) |
The application has finished launching. |
FinishedLaunching(IUIApplicationDelegate, UIApplication, NSDictionary)
Indicates that launching has finished and the app will shortly begin running.
public static bool FinishedLaunching (this UIKit.IUIApplicationDelegate This, UIKit.UIApplication application, Foundation.NSDictionary launchOptions);
static member FinishedLaunching : UIKit.IUIApplicationDelegate * UIKit.UIApplication * Foundation.NSDictionary -> bool
Parameters
The instance on which this extension method operates.
- application
- UIApplication
Reference to the UIApplication that invoked this delegate method.
- launchOptions
- NSDictionary
An NSDictionary with the launch options, can be null. Possible key values are UIApplication's LaunchOption static properties.
Returns
Applies to
FinishedLaunching(IUIApplicationDelegate, UIApplication)
The application has finished launching.
public static void FinishedLaunching (this UIKit.IUIApplicationDelegate This, UIKit.UIApplication application);
static member FinishedLaunching : UIKit.IUIApplicationDelegate * UIKit.UIApplication -> unit
Parameters
The instance on which this extension method operates.
- application
- UIApplication
Reference to the UIApplication that invoked this delegate method.