1

我正在尝试将单元格的重新排序索引放入数组中。

viewDidLoad

cell.showsReorderControl = YES;
arrayTag = [NSMutableArray array];

//在创建单元格时将 indexPath.row 保存为 cell.tag。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
 {
   .....

   cell.tag = indexPath.row;
   NSString *strCellTag = [NSString stringWithFormat:@"%d",cell.tag];
   if(![arrayTag containsObject:strCellTag])
   {
      [arrayTag addObject:strCellTag];
   }
   return cell;
 }

//我不确定这是否是正确的方法,但下面我正在尝试将更改保存到数组中。

- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath
{
    [arrayTag replaceObjectAtIndex:sourceIndexPath.row withObject:[NSString stringWithFormat:@"%i",proposedDestinationIndexPath.row]];
    [arrayTag replaceObjectAtIndex:proposedDestinationIndexPath.row withObject:[NSString stringWithFormat:@"%i",sourceIndexPath.row]];

    return proposedDestinationIndexPath;
}

要验证我NSLog

- (IBAction)doneButton:(id)sender
{
    NSLog (@"Number of Objects in Array %i", arrayTag.count);

    for (NSString *obj in arrayTag){
        NSLog(@"From ArrayTag obj: %@", obj);
    }   
}

NSLog没有按预期移动单元格的结果。

2013-07-10 17:50:47.291 MyApp[1634:c07] Number of Objects in Array 7
2013-07-10 17:50:47.292 MyApp[1634:c07] From ArrayTag obj: 0
2013-07-10 17:50:47.292 MyApp[1634:c07] From ArrayTag obj: 1
2013-07-10 17:50:47.292 MyApp[1634:c07] From ArrayTag obj: 2
2013-07-10 17:50:47.292 MyApp[1634:c07] From ArrayTag obj: 3
2013-07-10 17:50:47.293 MyApp[1634:c07] From ArrayTag obj: 4
2013-07-10 17:50:47.293 MyApp[1634:c07] From ArrayTag obj: 5
2013-07-10 17:50:47.293 MyApp[1634:c07] From ArrayTag obj: 6

NSLog移动/改组后的单元格似乎是错误的。我没有得到独特的价值。

2013-07-10 17:51:55.329 MyApp[1634:c07] Number of Objects in Array 7
2013-07-10 17:51:55.330 MyApp[1634:c07] From ArrayTag obj: 4
2013-07-10 17:51:55.330 MyApp[1634:c07] From ArrayTag obj: 5
2013-07-10 17:51:55.330 MyApp[1634:c07] From ArrayTag obj: 5
2013-07-10 17:51:55.330 MyApp[1634:c07] From ArrayTag obj: 5
2013-07-10 17:51:55.331 MyApp[1634:c07] From ArrayTag obj: 6
2013-07-10 17:51:55.331 MyApp[1634:c07] From ArrayTag obj: 6
2013-07-10 17:51:55.331 MyApp[1634:c07] From ArrayTag obj: 4

问:为什么重新排序后我没有获得新的唯一值?如何获取保存在数组中的新单元格顺序?

4

3 回答 3

5

委托和数据源说明

在以下情况下,您不应修改 tableView 后面的数据:

-tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:

当用户将单元格悬停在其他单元格上方时会调用此方法,因此,在拖动单元格时会导致多次调用此函数。

这里的关键是,该方法是 的一部分UITableViewDelegate它不是要修改数据,而是改变 tableView 的外观,它只是在单元格悬停时执行“滑动”动画。返回的值确定单元格的动画位置。

您应该做的是在用户提交更改时执行更改,这发生在您调用UITableViewDataSource协议方法时:

-tableView:moveRowAtIndexPath:toIndexPath:

这是当用户释放单元格并且它就位时,每次拖放都会发生一次。

作为一般的经验法则,任何内容UITableViewDelegate都用于节目,而内容UITableViewDataSource则用于真实数据。

修改模型

交换

交换或交换是最简单的情况([ A , B, C, D ] => [ D , B, C, A ]),并且有一个非常方便的方法:

[arrayTag exchangeObjectAtIndex:fromIndexPath.row withObjectAtIndex:toIndexPath.row];

迅速

let f = fromIndexPath.row, t = toIndexPath.row
(array[f], array[t]) = (array[t], array[f])

插入

插入有点复杂和冗长([ A , B, C, D ] => [B, C, D , A ])。重要的是进行更改,以免它们相互影响。

id obj = [arrayTag objectAtIndex:fromIndexPath.row];
[arrayTag removeObjectAtIndex:fromIndexPath.row];
[arrayTag insertObject:obj atIndex:toIndexPath.row];

迅速

let obj = array.removeAtIndex(fromIndexPath.row)
array.insert(newElement: obj, atIndex: toIndexPath.row)
于 2013-07-11T20:56:20.630 回答
3

我终于找到了适用于 Apple 文档的解决方案。

声明一个 NSMutableArray 属性 .h 或 .m:@property (strong, nonatomic) NSMutableArray *arrayTag;

合成它:@synthesize arrayTag;

初始化它viewDidLoad arrayTag = [[NSMutableArray alloc] init];

这是代码:

-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath
{
    NSString *stringToMove = [arrayTag objectAtIndex:sourceIndexPath.row];
    [arrayTag removeObjectAtIndex:sourceIndexPath.row];
    [arrayTag insertObject:stringToMove atIndex:destinationIndexPath.row];
}

链接到 Apple 网站: 清单 8-2:http: //developer.apple.com/library/ios/#documentation/userexperience/conceptual/tableview_iphone/ManageReorderRow/ManageReorderRow.html

于 2013-07-13T20:53:38.907 回答
0

如果要交换两个对象,则必须在临时位置保存一个对象:

伪代码

arr = [a,b,c]

//to swap(0,2)...

tmp = arr[2]

[arr replaceObjectAtIndex: 2 withObject: arr[0]]

[arr replaceObjectAtIndex: 0 withObject:tmp];
于 2013-07-11T19:35:16.930 回答