Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我选择一个单元格并将其拖到另一个单元格上时,我想识别它。
是否有任何示例/解决方法?
我的目标是创建一个 UITableView,它允许我将两个单元格合并为一个单元格。
谢谢
您可以使用 UITableView 委托
移动行
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
并比较 CGRects
self.tableView rectForRowAtIndexPath:(NSIndexPath *)
然后,我相信,创建,插入新单元格。