iphonememory-leaksuibuttoniboutletviewdidunload

Is there any memory leak in following code?


I have uibutton as property and releasing it in dealloc. I am just using it to hide or unhide but the frequency of its usage is quite high.

@property (retain, nonatomic) IBOutlet UIButton *object;

-(void)onsomebuttonclick
{
 object.hidden=true;
}

- (void)dealloc {
 [object release];
}

- (void)viewDidUnload
{
   [self setObject:nil];
}

Solution

  • Why not just run

    (a) the static analyser

    (b) Instruments with the leak tool enabled

    or

    (c) use ARC?