我有 uibutton 作为属性并在 dealloc 中释放它。我只是用它来隐藏或取消隐藏,但它的使用频率很高。
@property (retain, nonatomic) IBOutlet UIButton *object;
-(void)onsomebuttonclick
{
object.hidden=true;
}
- (void)dealloc {
[object release];
}
- (void)viewDidUnload
{
[self setObject:nil];
}