i’m changing image of UIImageview by [self setImage: newImage];
Looks like every time I does that with newImage, prior image doesn’t seem to be released.
What’s the correct way to replace image of UIImageView?
Thank you
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.
UIImageView setImage:never leaks, unless the image you are passing doesn’t get released.Your code wont leak, if your are assigning an autoreleased image to the image view, something like the following.
But, if you are allocating the image somewhere, you have to release it manually.