As in the title, I was wondering what is the "default" implementation of viewDidLoad
in UIViewController
? Does it really do anything? Also does it matter if in my UIViewController's
subclass I write
-(void)viewDidLoad{
[super viewDidLoad];
/*custom code here*/
}
or
-(void)viewDidLoad{
/*custom code here*/
[super viewDidLoad];
}
?
P.S. This is not a duplicate, in other questions people ask when should they call [super viewDidLoad], while my main concern is what the UIViewController's implementation do with it.