我有一个UITableView
实例并实现:
tableView:canEditRowAtIndexPath:
tableView:editingStyleForRowAtIndexPath:
tableView:shouldIndentWhileEditingRowAtIndexPath:
tableView:canMoveRowAtIndexPath:
tableView:moveRowAtIndexPath:toIndexPath:
之后,我可以看到所有带有重新排序控件的单元格。
苹果的标题说:
@property(nonatomic) BOOL showsReorderControl; // default is NO
如果默认值是NO
为什么我会看到重新排序控件?
更新:tableView:cellForRowAtIndexPath:
创建单元格后,
我还检查了属性的值:
(lldb) p [c showsReorderControl]
(BOOL) $1 = NO