UIApplicationDelegate_Extensions.FinishedLaunching Method

Definition

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

This
IUIApplicationDelegate

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

This
IUIApplicationDelegate

The instance on which this extension method operates.

application
UIApplication

Reference to the UIApplication that invoked this delegate method.

Applies to