Share via


UIApplicationDelegate_Extensions.FinishedLaunching Method

Definition

Overloads

Name Description
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.

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static bool FinishedLaunching(this UIKit.IUIApplicationDelegate This, UIKit.UIApplication application, Foundation.NSDictionary? launchOptions);
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FinishedLaunching : UIKit.IUIApplicationDelegate * UIKit.UIApplication * Foundation.NSDictionary -> bool

Parameters

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

Attributes

Applies to

FinishedLaunching(IUIApplicationDelegate, UIApplication)

The application has finished launching.

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static void FinishedLaunching(this UIKit.IUIApplicationDelegate This, UIKit.UIApplication application);
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FinishedLaunching : UIKit.IUIApplicationDelegate * UIKit.UIApplication -> unit

Parameters

application
UIApplication

Reference to the UIApplication that invoked this delegate method.

Attributes

Applies to