最近遇到一个问题,控制器中的UITableView在编辑模式下,Pop回去之后会发生崩溃,错误信息如下:
**-[MyViewController tableView:canEditRowAtIndexPath:]: message sent to deallocated instance 0x1369b8170**
崩溃在部分iOS8.X手机上复现,解决的时候需要在viewWillDisappear或者dealloc中设置:
self.tableView.editing = NO;