我有一个UITableViewCell的子类,其中我有方法willTransitionToState和didTransitionToState,但是当我尝试在单元格上滑动时它没有被调用。这是为什么?
答案 0 :(得分:1)
您的表格视图数据源必须实现
- (void)tableView:(UITableView *)tableView commitEditingStyle (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
用于滑动到删除工作。是吗?