我正在阅读这篇关于 iOS 5 开发的文章,其中包含以下内容:
Delete all the methods except for viewDidUnload. When you’re finished,
your implementation should look like this:
#import "BIDViewController.h" @implementation BIDViewController
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view. // e.g. self.myOutlet = nil;
}
@end
只是,我从来没有这种方法。它说当我链接动作和出口时它应该自动向该方法添加方法,但由于我必须随机添加它,它似乎没有这样做。