NSBundle.LoadNib Method

Definition

Overloads

LoadNib(String, NSObject)
LoadNib(String, NSObject, NSDictionary)

Loads the specified nib and returns the top-level objects.

LoadNib(String, NSObject)

[Foundation.Export("loadNibNamed:owner:")]
public static bool LoadNib (string nibName, Foundation.NSObject owner);
static member LoadNib : string * Foundation.NSObject -> bool

Parameters

nibName
String
owner
NSObject

Returns

Attributes

Applies to

LoadNib(String, NSObject, NSDictionary)

Loads the specified nib and returns the top-level objects.

[Foundation.Export("loadNibNamed:owner:options:")]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual Foundation.NSArray LoadNib (string nibName, Foundation.NSObject owner, Foundation.NSDictionary options);
abstract member LoadNib : string * Foundation.NSObject * Foundation.NSDictionary -> Foundation.NSArray
override this.LoadNib : string * Foundation.NSObject * Foundation.NSDictionary -> Foundation.NSArray

Parameters

nibName
String
owner
NSObject

To be added.

This parameter can be null.

options
NSDictionary

To be added.

This parameter can be null.

Returns

Attributes

Applies to