-[CFString respondsToSelector:]: message sent to deallocated instance 0x4b9e720
I don’t where to start, tried static analyzer and stepped through each line of code but still no help.
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.
It means you are trying to use an object which has been deallocated – i.e. sent
releaseorremoveFromSuperview:Check this page to see how to enable a debug feature called NSZombie – it keeps objects alive even when released, and lets you know which one you are accessing. The downside is that the program uses much more memory (since nothing is truly released) but you only use it until you have found the problem then turn it off.