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.

C# | Visual Basic | Visual 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 )

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

YES if the nib file was loaded successfully; otherwise, NO.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)