Implement the initWithCoder method to perform custom view controller initialization when your app is run with a storyboard.
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self) {
NSLog(@"initialization");
}
return self;
}