像本机Spotlight搜索一样创建表格

时间:2014-08-29 11:19:34

标签: ios uitableview drag-and-drop

我想创建一个包含单元格的表,就像在Settings-> General-> Spotlight Search中一样。

enter image description here

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

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

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

1 个答案:

答案 0 :(得分:2)

尝试使用此代码

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

有关详细信息,请参阅此处 How to make UITableView rearrangeable?