Unable to find reason for Crash on -[UIScrollView(UIScrollViewInternal) _scrollViewAnimationEnded:finished:]

后端 未结 3 750
日久生厌
日久生厌 2021-02-05 13:55

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

3条回答
  •  灰色年华
    2021-02-05 14:06

    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.

提交回复
热议问题