我有一个表格视图,我已经在其中实现UITableViewCellEditingStyleDelete
了,在特定单元格上滑动时,会出现删除按钮。
现在我想淡化手指滑动的单元格,这样当删除按钮出现时,后面的单元格应该会淡化。在此先感谢您的帮助。
这是我的代码:
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}