If I am receiving memory warnings where exactly I have to release all my views & data ?
Whether I have to release in
- (void)didReceiveMemoryWarning or in
- (void)viewDidUnload
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For iPhone OS 3.0 and later
viewDidUnloadmaybe called during low memory situtations so best to release views in viewDidUnload, just note that for custom views, create them at viewDidLoad instead of init method of the class.didReceiveMemoryWarningis used more for releasing custom data structures instead of releasing views.