iOS5 Storyboard UIViewController which init method is called by the storyboard?

Solution 1:

The initializer used is initWithCoder:

- (id)initWithCoder:(NSCoder *)decoder

Then afterwards you will also get an awakeFromNib message.

Solution 2:

I believe it is awakeFromNib