我有一个分组表,我希望用户能够重新排序。我想有两组。当我将一行从 A 组移动到 B 组时,我希望将 B 组的顶行移动到 A 组的底部。当我将一行从 B 组移动到 A 组时,我希望底行将 A 组的成员移至 B 组的顶部。
这样可以保持表中每个组的大小。这可能吗?
非常感谢!
我有一个分组表,我希望用户能够重新排序。我想有两组。当我将一行从 A 组移动到 B 组时,我希望将 B 组的顶行移动到 A 组的底部。当我将一行从 B 组移动到 A 组时,我希望底行将 A 组的成员移至 B 组的顶部。
这样可以保持表中每个组的大小。这可能吗?
非常感谢!
我还没有找到一种明显的方法来做到这一点,即在拖动过程中导致行移动。
但是,一旦拖动完成,我确实有一些应该起作用的东西。但是,由于某种我不明白的原因,拖动完成时显示被搞砸了。这是我的做法:
- (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
return 2;
}
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
switch (section) {
case INDEX_OF_SECTION_SELECTED_READOUTS:
return NUMBER_OF_READOUTS_DISPLAYED;
break;
case INDEX_OF_SECTION_UNSELECTED_READOUTS:
return NUMBER_OF_POSSIBLE_READOUT_CHOICES - NUMBER_OF_READOUTS_DISPLAYED;
break;
default:
return 0;
break;
}
}
- (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
switch (section) {
case INDEX_OF_SECTION_SELECTED_READOUTS:
return @"Displayed";
break;
case INDEX_OF_SECTION_UNSELECTED_READOUTS:
return @"Available";
break;
default:
return @"";
break;
}
}
- (int) getIndexFromIndexPath:(NSIndexPath *)indexPath {
int index = indexPath.row;
if (indexPath.section == INDEX_OF_SECTION_UNSELECTED_READOUTS) {
index += NUMBER_OF_READOUTS_DISPLAYED;
}
return index;
}
- (void) tableView:(UITableView *) tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
int fromIndex = [self getIndexFromIndexPath:fromIndexPath];
int toIndex = [self getIndexFromIndexPath:toIndexPath];
if (toIndex < fromIndex) {
// Shuffle the to row and everything beneath it down by one
for (int i = fromIndex; i > toIndex; i--) {
[readouts exchangeObjectAtIndex:i withObjectAtIndex:i-1];
}
}
else {
// Shuffle the to row and everything above it up by one
for (int i=fromIndex; i < toIndex; i++) {
[readouts exchangeObjectAtIndex:i withObjectAtIndex:i+1];
}
}
// Now update the order for the readouts
for (int i=0; i < [readouts count]; i++) {
NSString *key = [readouts objectAtIndex:i];
[readoutService setReadoutType:key index:i];
}
}
这应该是正确的,但是当拖动完成时,单元格会从显示中完全消失(只有单元格应该在的位置可见背景)。
我尝试从 moveRowAtIndexPath 中调用 [self.tableview reloadData],但 Apple 的文档说“不应在插入或删除行的方法中调用它,尤其是在通过调用 beginUpdates 和 endUpdates 实现的动画块中”
我坚持这一点,并寻求有关如何解决显示问题的意见。