I have a UIViewController subclass and I'm trying to figure out what to override such that I can run some initialization code only once per object instance.
The viewDidLoad method might seem like the obvious answer, but the problem is that viewDidLoad may run more than once if the controller resets the view due to a memory warning. The initWithNibName:bundle:, init, and initWithCoder: methods also seem like good choices, but which one to override? The awakeFromNib method is another consideration, but that doesn't seem to be executed in my view controller.
Is there a way to do this that I'm missing?