Does it matter if I call the method of the super class first thing or at the end? For example
-(void)didReceiveMemoryWarning {
/* do a bunch of stuff */
[super didReceiveMemoryWarning];
}
versus
-(void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
/* do a bunch of stuff */
}
same question for other methods like viewWillAppear, willRotateToInterfaceOrientation etc.
I am looking for meaningful differences, not just stylistic, or philosophical (although those are welcome too).