2

当我选择一个单元格并将其拖到另一个单元格上时,我想识别它。

是否有任何示例/解决方法?

我的目标是创建一个 UITableView,它允许我将两个单元格合并为一个单元格。

谢谢

4

1 回答 1

1

您可以使用 UITableView 委托

移动行

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath

并比较 CGRects

self.tableView rectForRowAtIndexPath:(NSIndexPath *)

然后,我相信,创建,插入新单元格。

于 2013-07-18T08:15:16.740 回答