In my app many crashes with the following log are reported very often, but even with several test devices and iOS versions I am not able to reproduce it. So there\'s no way to f
The SIGSEGV
signal is sent to a process when it makes an invalid virtual memory reference, or segmentation fault. (see Wikipedia)
So you are accessing an object that likely has been released. As this is an during an animation, maybe you defined a selector to be invoked after the animation finished or something like that? That would be were I would starting looking.