I am filling some Objects from my View Controller using the following Method :
-(void)viewWillAppear:(BOOL)animated
{
}
What’s the best way to release the Objects?I want to release all the used Object when my View closes.
Thanks
You should release them after your view has disappeared, not before, otherwise you may see some strange effects if your view disappears with animation…