SIGABRT crash on __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__

后端 未结 1 1948
醉话见心
醉话见心 2021-01-14 17:57

I have a SIGABRT crash log that is unfamiliar to me. Looks like it\'s throwing an exception, but I can\'t see where the exception is listed or the root cause of it.

相关标签:
1条回答
  • 2021-01-14 18:30

    The program should print information about the exception to the device console (viewable in the Xcode organizer when the device is connected). It would be very, very helpful to see this information.

    _NSThreadPerformPerform is used by the performSelector... family of methods. So look at your use of those methods. In particular, figure out if it's possible that you're asking an object to perform a selector that it doesn't support. That would throw an exception.

    0 讨论(0)
提交回复
热议问题