This repository has been archived by the owner on Nov 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
crash msg:*** Assertion failure in -[UITableView _endCellAnimationsWithContext:], #439
Comments
same crash |
I'm also facing this issue. In my case, I'm just reloading a cell like this: DispatchQueue.main.async {
self.tableView.beginUpdates()
self.tableView.reloadRows(at: [IndexPath(row: 0, section: 0)], with: .none)
self.tableView.endUpdates()
} I'm doing this in the success case of an API call. part of my crash log:
|
Is there a way to prevent this method swizzling from happening? I suspect it's somehow the cause of this crash. |
Update: This crash happened during App Store review and resulted in rejecting my app. I really hope it is investigated and fixed sooner than later. |
@alobaili you can always implement your own, or attempt to fix, or not use? Seriously. https://github.com/dzenbot/DZNEmptyDataSet/blob/master/LICENSE#L9 == "Use at your own risk" |
@dzenbot I understand the risks. I just wanted to share my experience. Consider it feedback or bug report to help the creators investigate and improve. Best, |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
the throw exception code is :
// If found, call original implementation
if (impPointer) {
((void(*)(id,SEL))impPointer)(self,_cmd);
}
sometimes crash I don't know why
The text was updated successfully, but these errors were encountered: