Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>First, placeholder is a better word than proxy here. </p> <p>Normally when you have an object in a NIB/XIB file it means that loading the NIB file will create that instance. The placeholder objects are objects that will already exist when the NIB file is loaded, and they appear inside of the NIB so that you can make connections between the objects that will be created by loading the NIB and the objects that already exist.</p> <p>The file's owner, first responder and application are all placeholders.</p> <p>The file's owner is placeholder for the object that will load the nib. All of the NIB loading methods take an 'owner' parameter. When you make a connection with the File's owner, when it's established at runtime, it will be connected to the owner object passed in to the nib loading method. Many UIKit and AppKit classes invoke the nib loading methods for you. <code>NSApplication</code>, <code>NSViewController</code>, <code>NSWindowController</code>, <code>UIApplication</code>, and <code>UIViewController</code> all load NIB files on your behalf. When they do that they pass self as the owner parameter to the nib loading methods. That's why when you use a view controller or a window controller you set the file's owner to your subclass and make most of the connections between your views and the file's owner.</p> <p>The <code>NSApplication</code> instance is a simple placeholder for <code>[NSApplication sharedApplication]</code>. That's a global singleton and the icon in Interface Builder represents that global singleton. Loading the NIB file does not create a second <code>NSApplication</code> instance. By contrast, when a NIB file contains a window, if you load it a dozen times, you'll have a dozen window instances, but still one <code>NSApplication</code> instance.</p> <p>The first responder is unique. Connecting an action to the first responder means that when the action is fired, it should dynamically be sent to the responder chain. The responder chain typically starts with the focused view, and continues up through the view hierarchy and includes some controllers and delegates. Each object in the chain gets a shot at handling the action. Menu items work great with the responder chain. If you had a menu item for "Make Bold" that is supposed to make the currently selected text bold, you might start by hooking that up to an <code>NSApplication</code> subclass, but then you'd have to know all of the situations that "Make Bold" applies, and how to handle them. A text view and an editable web view would probably need different code to handle "make bold" and bottling this all up in one object would get quite complex and wouldn't be very extensible. Instead you could connect the "Make Bold" menu item's action up to a <code>makeBold:</code> action on the First Responder. This would mean that when the menu item was selected, the focused object, or one of its parents that responded to <code>makeBold:</code>, would get the <code>makeBold:</code> message. Now many classes can implement a <code>makeBold:</code> method and respond to this menu item when they're in focus.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload