I am using instrument tool to find leaks in my code.
Tool indicating 100% leak on below line.
NSArray *subviews = [[cell subviews] copy];
How to solve leak in the above piece of code?
Thanks in advance.
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.
If you are using
copyyou must match it withrelease. Without more code it is difficult to accurately diagnose how to fix this issue. However, you will most likely want to do the following: