I have member variables in my custom UIViewController that are defined as 'assign' (not 'retain') like this:

@property (nonatomic, assign) UIButton* mSkipButton;

In my loadView method, I set the var, for instance self.mSkipButton, to an autoreleased alloc of the variable type. I then attach it to my controller's view essentially having the view reference count and release it as needed.

This concerns me, however, that I have the pointer stored in my member var and that it could be referencing released memory if the count decrements at some point. Is it better practice to instead declare the variable as 'retain' and then in the viewDidUnload method release the member var (or just set it to nil to release and make sure i don't have an address in there)?

Alternatively, could I simply set the member var to nil in viewDidUnload and not make it a retained variable?

link|improve this question

59% accept rate
Is this object retained by another object that outlives your view controller? If you could prove it does get retained by another item(perhaps app delegate), then you might get away with not retaining it. But best practice says you should always retain and release. – Kekoa Jan 5 at 21:32
feedback

2 Answers

up vote 2 down vote accepted

Is it better practice to instead declare the variable as 'retain' and then in the viewDidUnload...?

Yes, use retain -- good instinct. In viewDidUnload, you'd typically just set it to nil via the ivar's setter: self.ivar = nil;

I find it easier to be aware of and manage object codependencies explicitly, than to deal with issues related to using assign. You can completely avoid the issues of holding an unmanaged reference.

Arguments can be made that assign would usually be fine here (and it is in some cases), but using assign can complicate object graphs and ownership for anyone working with the class. As program complexity grows (and the libraries you depend on change), it becomes increasingly difficult to track lifetimes of unmanaged references. Things tend to break, or operate differently on different hardware and software combinations. Attempting to manage the lifetime of an unmanaged object over a complex program or in a concurrent context is self abuse. Guaranteeing defined and predictable behavior/operation reduces bug counts.

link|improve this answer
feedback

That's a property, not a "member var" (known in Objective-C as an instance variable or ivar.)

The semantics of a property depend on how that property is going to be used. Generally speaking, you'll want your properties to be retained for the lifetime of your object. If the property is a connected IBOutlet, this will be done for you by the NIB loader; otherwise, you must be explicit and use the retain or copy attribute on the property.

For objects that are expected to own your object, a property should always be marked assign to avoid a retain loop. For example, an object usually owns any object for which it acts as a delegate (usually, but not always--every CS rule has an exception.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.