Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hey guys, I'm getting crazy.

*** -[UIAnimator removeAnimationsForTarget:]: message sent to deallocated instance 0x5ba13d0

It happens in different moments, when I scroll my tableview, when I switch my filter (a UISegmentedControl).

Help me, I'm getting crazy with this guys :) How can I fix?

share|improve this question
We need more code. Also, try a build and analyze on teh project and see if that points to anything. – Stefan H Feb 24 '11 at 4:43
It looks like when perform any action, removeAnimationsForTarget method call on a deallocated object.can you find out which location it happens. – Ishu Feb 24 '11 at 4:47
I would start by searching previous questions, this is a common problem and the solutions are the same. – zoul Feb 24 '11 at 7:18
@Stefan H I don't use UIAnimator. Never. This is the reason because I'm getting crazy. – Joaquin McCoy Feb 25 '11 at 3:48

2 Answers

I just solved the same problem. I thought it was related to UIAnimation, but it was related to UITableViewCell, instead. I found a good starting point looking at this article.

http://marius.me.uk/blog/2011/mar/fixing-uianimator-removeanimationsfortarget-crash/

Good luck and let me know!

share|improve this answer
Thank you man!! – Joaquin McCoy Mar 16 '11 at 20:19
you're welcome.. – notme Mar 21 '11 at 0:15

I had the same symptom (crash caused by [UIAnimator removeAnimationsForTarget:] message being sent to deallocated UITableViewCell, but it turned out to have been caused by a reason different from the one cited in the above solution. It turned out that the reason was that my UI was being updated by a non-UI thread. Specifically, I was calling popViewController:animated: from a background thread. When I moved this invocation to the UI thread via a callback the problem went away.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.