我想像使用“设置”->“常规”->“ Spotlight搜索”一样,使用单元格创建一个表。



基本上,用户触摸右侧的三个白色条纹以拖放单元格。

我看了http://www.raywenderlich.com/63089/cookbook-moving-table-view-cells-with-a-long-press-gesture,但在这种情况下,用户必须长按才能触摸单元格的任何部分以移动。

有关创建与Spotlight搜索类似的视图的任何帮助?

最佳答案

尝试使用此代码

-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
 {
   return YES;
 }


看到这个更多的细节
How to make UITableView rearrangeable?

08-05 13:44