blog

Home / DeveloperSection / Blogs / iOS : IBOutlet of UI Element

iOS : IBOutlet of UI Element

Tarun Kumar2635 20-Jul-2015

An IBOutlet connection is usually established between a view or control and its managing view controller (this is often done in addition to any IBActions that a view controller might be targeted to perform by a responder). However, an IBOutlet can also be used to expose a top-level property, like another controller or a property that could then be accessed by a referencing view controller. 


When to use @property or ivar 

As with anything in modern Objective-C, properties are preferred to direct ivar access. The same is true of IBOutlets:

 

// YES

@interface MyController : UIViewController

@property (nonatomic, weak) IBOutlet UISwitch *switch;

@end

 

// NO

@interface Sample: UIViewController {

    IBOutlet UISwitch *_switch

}

@end

 

Since properties are the conventional way to expose and access members of a class, both externally and internally, they are preferred in this case as well, if only for consistency.

When to use weak or strong

One unfortunate consequence (if you want to call it that) of ARC is the ambiguity of when a IBOutlet @property should be declared as weak or strong. The ambiguity arises from the fact that most outlets have no discernible behavioral differences between weak or strong—it just works.


…except when it doesn't… and things crash, or the compiler warns about weak or strong use.

So what should one do? Always declare IBOutlet properties as weak, except when they need to be strong.                                   


Outlets should be changed to strong when the outlet should be
considered to own the referenced object: 


·   This is often the case with File’s Owner—top level objects in a nib file are frequently considered to be owned by the File’s Owner.


·   You may in some situations need an object from a nib file to exist outside of its original container. For example, you might have an outlet for a view that can be temporarily removed from its initial view hierarchy and must therefore be maintained independently.


·    The reason why most IBOutlet views can get away with weak ownership is that they are already owned within their respective view hierarchy, by their superview. This chain of ownership eventually works its way up to the view owned by the view controller itself. Spurious use of strong ownership on a view outlet has the potential to create a retain cycle.


Updated 13-Mar-2018

Leave Comment

Comments

Liked By