我正在尝试编写我的 didReceiveMemoryWarning 方法。我是否应该像在 ViewDidUnload 中一样将 IBOutlets 设置为 nil?
我在 iPhone 模拟器上模拟内存警告,但第二次运行它时,应用程序崩溃了。
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (void)viewDidUnload {
self.repCount=nil;
self.weight=nil;
self.repUp=nil;
self.repDown=nil;
self.weightUp=nil;
self.weightDown=nil;
self.next=nil;
self.weightLabel=nil;
self.titleLabel=nil;
self.repLabel=nil;
[super viewDidUnload];
}
非常感谢任何帮助或指导。谢谢