在h文件中批量創建instance:
IBOutlet UIImageView *imageView;
IBOutlet UIImageView *subImageView;
IBOutlet UIImageView *arrowRight;
IBOutlet UIImageView *arrowLeft;
IBOutlet UIImageView *arrowDown;
程序是ARC模式的。
是否應該在dealloc ()
方法中設置為nil來釋放?
謝謝。
如果對象消失後用不到全局變量了,最好的方法是在dealloc將全局指針指向空
- (void)dealloc {
gYourGlobalPointer = nil;
}
在ARC中不能調用[super dealloc]
,dealloc
會自動發送到超級類中。