If I have something like a UILabel linked to a xib file, do I need to release it on dealloc? The reason I ask is because I don't alloc it, which makes me think I don't need to release it either?
eg (in the header):
in the implementation:
eg (in the header):
Code:
IBOutlet UILabel *lblExample;
in the implementation:
Code:
....
[lblExample setText:@"whatever"];
....
-(void)dealloc{
[lblExample release];//?????????
}