One thing I noticed about the 2.1 SDK is that they began adding the [super___] to the templates, such as [super viewDidLoad];
should we always be calling super for the inherited functions? Cuz the sample code doesn't always do it.
Also, do you call 'super' at the end or the start of a function? I notice that [super dealloc]; always seems to go last, but for other functions, [super ___]; is the first line.
should we always be calling super for the inherited functions? Cuz the sample code doesn't always do it.
Also, do you call 'super' at the end or the start of a function? I notice that [super dealloc]; always seems to go last, but for other functions, [super ___]; is the first line.