First one:
- (void)dealloc {
[super dealloc];
[AboutButton release];
}
Second one:
- (void)dealloc {
[AboutButton release];
[super dealloc];
}
Both methods are delloc, first run the super first, the other run it later, which one is correct or there is no diff between two. thz.