in my awakeFromNib method i have added most of my NIB objects into mutable arrays so i can call them in my code. is it ok to release those objects using fast enumeration in the dealloc method?
Code:
- (void)dealloc
{
for (id objects in array1)
[objects release];
[array1 release];
for (id objects in array2)
[objects release];
[array2 release];
[super dealloc];
}