I’m getting an object called after being deallocated and it is being called from NSKVOPendingNotificationCreate. What is it and what does it do?
Share
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’s an internal part of the KVO notification system in Foundation. What it does isn’t particularly important, but what the crash is telling me is that an object’s lifetime has been mismanaged.
You could run your application with the
NSZombieEnabledenvironment variable set toYESand that would tell you which object was being messaged after deallocation.