我有一个应用程序,我在其中保持我tableview
的可编辑以拖放单元格。但是当我这样做时,设计cell
正在发生变化,使得每个元素都居中,并且有一个三行的右显示按钮。我需要通过保持单元格的相同设计来做到这一点。没有任何披露按钮并保持单元格布局与不可编辑表格视图的情况相同。我在 didload中实现了这样的编辑[tableview setEditing:YES animated:YES];
并实现了代表作为
- (UITableViewCellEditingStyle) tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
return UITableViewCellEditingStyleNone;
}
- (BOOL) tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
return YES;
}
- (void) tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {
NSInteger sourceRow = sourceIndexPath.row;
NSInteger destRow = destinationIndexPath.row;
id object = [array objectAtIndex:sourceRow];
[array removeObjectAtIndex:sourceRow];
[array insertObject:object atIndex:destRow];
}
任何人都可以帮助我实现这一目标吗?