UIApplicationDelegate.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
| Name | Description |
|---|---|
| FinishedLaunching(UIApplication) |
The application has finished launching. |
| FinishedLaunching(UIApplication, NSDictionary) |
Indicates that launching has finished and the app will shortly begin running. |
FinishedLaunching(UIApplication)
The application has finished launching.
[Foundation.Export("applicationDidFinishLaunching:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void FinishedLaunching(UIKit.UIApplication application);
[<Foundation.Export("applicationDidFinishLaunching:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member FinishedLaunching : UIKit.UIApplication -> unit
override this.FinishedLaunching : UIKit.UIApplication -> unit
Parameters
- application
- UIApplication
Reference to the UIApplication that invoked this delegate method.
Implements
- Attributes
Applies to
FinishedLaunching(UIApplication, NSDictionary)
Indicates that launching has finished and the app will shortly begin running.
[Foundation.Export("application:didFinishLaunchingWithOptions:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual bool FinishedLaunching(UIKit.UIApplication application, Foundation.NSDictionary? launchOptions);
[<Foundation.Export("application:didFinishLaunchingWithOptions:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member FinishedLaunching : UIKit.UIApplication * Foundation.NSDictionary -> bool
override this.FinishedLaunching : 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
Implements
- Attributes