Here is what I see in the crash report:
The crash is caused by bei SIGSEGV in objc_msgSend . This means that the application is trying to send a message to an invalid object. This means that you have at least one memory problem in your application (somewhere).
It seems that the problem occurs when you try to delete a row in the View table by scrolling to delete gestures, see -[UITableView _endSwipeToDeleteRowDidDelete:] displayed in the stack trace, and additional tips above, for example -[UITableViewCell _animateSwipeCancelation] , -[UITableViewCell _updateViewsForDeleteButton] .
Therefore, it might be worth a try to test this use case in all the table views in your application.
In addition, use the Analyze Xcode function and fix all the warnings it shows, and also try to run the application using Enable Zombie Objects . There are many websites, as well as answers here on SO explaining how to do this.
Kerni source share