У меня есть очень классический класс, который содержит кнопки и метки и т.д ...:
@interface ExerciseViewController : UIViewController {
// Hardcoding for outlets to XIB file
// Outlets can be passed only as singe variables in Interface Builder.
// Therefore, we can only declare stupid variables, not arrays of buttons.
// Bid array
// Labels S,W,N,E
IBOutlet UILabel *labelSouth;
IBOutlet UILabel *labelWest;
IBOutlet UILabel *labelNorth;
IBOutlet UILabel *labelEast;
Конечно, все эти свойства сохраняются:
@property (nonatomic, retain) IBOutlet UILabel *labelSouth;
Я просто хотел бычтобы узнать, должен ли я освободить все эти элементы в методе dealloc моего класса:
- (void)dealloc {
[super dealloc];
// Release all GUI objects;
Итак, я должен взять все свои свойства и отправить релиз каждому из них?Я склонен верить да, но я предпочитаю спросить.
С уважением, Apple92