我以前曾提出过这个问题,但我越看其他守则的例子,我就越看到布局上的分歧。 我通常在开始时(如果是制造型方法)或最后(如果是销毁型方法)(见下文。。。。。。)尝试发出这一呼吁。
-(void)viewDidLoad {
[super viewDidLoad];
。。。
。。。
}
。
-(void)viewDidUnload {
。。。
。。。
[super viewDidUnload];
}
The other method I see always seems to place the call to super at the end of the method regardless。 (see below。。。) my question is does it matter?
-(void)viewDidLoad {
。。。
。。。
[super viewDidLoad];
}
。
-(void)viewDidUnload {
。。。
。。。
[super viewDidUnload];
}
cheers gary。