我想知道当我选择一个单元格并将其拖到另一个单元格上时。
是否有任何示例/解决方法?
我的目标是创建一个UITableView,它允许我将两个单元格合并到一个单元格中。
由于
答案 0 :(得分:1)
您可以使用UITableView委托
移动行
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
并比较CGRects
self.tableView rectForRowAtIndexPath:(NSIndexPath *)
然后,我相信,创建,插入新单元格。