Hello!
I wonder why in these examples there is always a [super someMethod] inside of the Method that has the exact same name:
- (void)viewDidLoad {
[super viewDidLoad];
// some code
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (void)viewDidUnload {
[super viewDidUnload];
}
I know that those messages are sent to the superclass, but what's the deal with this?