重新排序自定义分组UITableView时单元格的背景图像

时间:2013-03-24 09:07:00

标签: ios uitableview

我已经创建了自己的自定义分组UITableView。顶部单元格使用“top.png”作为背景,中间单元格为“middle.png”,底部单元格为“bottom.png”。

我正在使用

- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath

在重新排序期间拖动细胞时更改细胞的背景图像。但是,我似乎无法找到一个简单的解决方案。然而,我尝试,我总是得到一个非常复杂的解决方案,有很多if-cases,它只是感觉非常混乱,过于复杂,就像我没有涵盖所有的情况。我正在监督这个问题有一个简单的解决方案吗?

我找到了此问题herehere的“解决方案”。但它们并不完整,并不适用于所有情况。

应处理的特殊情况,但提到的两个解决方案无法处理:

  • 移动行,然后返回原始位置
  • 围绕行快速移动一行,向下滚动tableview

1 个答案:

答案 0 :(得分:3)

我有同样的问题,我想我已经找到了解决方案。根据我的测试,它在一个部分中工作正常(使用两个和十几个单元格进行测试),但如果您在不同部分之间拖动单元格,则需要进行一些修改。我还没有进行那些修改,因为我不需要那些功能。

此方法假定您已实现委托方法

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

设置单元格的初始背景并且它正常工作。

此方法将在移动时更新单元格的新位置

- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath {

    // Get the index paths of the cells above and below our current target cell
    NSIndexPath *higherPath = [NSIndexPath indexPathForRow:proposedDestinationIndexPath.row - 1 inSection:proposedDestinationIndexPath.section];
    NSIndexPath *lowerPath = [NSIndexPath indexPathForRow:proposedDestinationIndexPath.row + 1 inSection:proposedDestinationIndexPath.section];

    // Update our source cell to the appropriate image for its current position
    [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:sourceIndexPath] forRowAtIndexPath:proposedDestinationIndexPath];


    if (sourceIndexPath.row > proposedDestinationIndexPath.row) {
        // Source cell is below the target

        // Update the cell that was in our target position
        [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:proposedDestinationIndexPath] forRowAtIndexPath:lowerPath];

        // Ensure that any cell above our new target is refreshed if the cell is dragged back down the list
        [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:higherPath] forRowAtIndexPath:higherPath];

    } else if (sourceIndexPath.row < proposedDestinationIndexPath.row) {
        // Source cell is above the target

        // Update the cell that was in our target position
        [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:proposedDestinationIndexPath] forRowAtIndexPath:higherPath];

        // Ensure that any cell below our new target is refreshed if the cell is dragged back up the list
        [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:lowerPath] forRowAtIndexPath:lowerPath];

    } else {
        // Source cell is the same as the target - cell is back in its original position

        // Update any cells below and above the position
        [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:higherPath] forRowAtIndexPath:higherPath];
        [self tableView:self.tableView willDisplayCell:[tableView cellForRowAtIndexPath:lowerPath] forRowAtIndexPath:lowerPath];
    }

    return proposedDestinationIndexPath;
}

我在患流感期间得出了这个,所以我可能在我的解释中犯了一些愚蠢的错误,但我非常有信心这应该可靠地工作,除了单节限制。