UITableView - 如何识别我是否将单元格拖到单元格上?

时间:2013-07-18 08:08:27

标签: ios uitableview drag

我想知道当我选择一个单元格并将其拖到另一个单元格上时。

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

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

由于

1 个答案:

答案 0 :(得分:1)

您可以使用UITableView委托

移动行

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

并比较CGRects

self.tableView rectForRowAtIndexPath:(NSIndexPath *)

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