MonobjcMonobjc Documented Class Library
LoadNibFileExternalNameTableWithZone Method (fileName, context, zone)
NamespacesMonobjc.AppKitNSBundle_AppKitAdditionsLoadNibFileExternalNameTableWithZone(NSString, NSDictionary, IntPtr)

Unarchives the contents of the nib file and links them to objects in your program.

Original signature is '+ (BOOL)loadNibFile:(NSString *)fileName externalNameTable:(NSDictionary *)context withZone:(NSZone *)zone'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static bool LoadNibFileExternalNameTableWithZone(
	NSString fileName,
	NSDictionary context,
	IntPtr zone
)
Public Shared Function LoadNibFileExternalNameTableWithZone ( _
	fileName As NSString, _
	context As NSDictionary, _
	zone As IntPtr _
) As Boolean
public:
static bool LoadNibFileExternalNameTableWithZone(
	NSString^ fileName, 
	NSDictionary^ context, 
	IntPtr zone
)
Parameters
fileName (NSString)
The location of the nib file specified as an absolute path in the file system.
context (NSDictionary)
A name table whose keys identify objects associated with your program or the nib file. The newly unarchived objects from the nib file use this table to connect to objects in your program. For example, the nib file uses the object associated with the NSNibOwner constant as the nib file's owning object. If you associate an empty NSMutableArray object with the NSNibTopLevelObjects constant, on output, the array contains the top level objects from the nib file. For descriptions of these constants, see NSNib Class Reference.
zone (IntPtr)
The memory zone in which to allocate the nib file objects.
Return Value
YES if the nib file was loaded successfully; otherwise, NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)