0

我有一个应用程序可以重新排列 UITableViewCells 的顺序并可以删除单元格但是,我需要一种方法来保存重新排列和删除的表格视图单元格的顺序。我正在使用 nsmutablearray

  - (void)viewDidLoad
{
[super viewDidLoad];
if (!maTheData) {
maTheData = [[NSMutableArray alloc]     initWithObjects:@"Bus", @"Truck", @"Car",nil];


}
}

- (NSInteger)numberOfSectionsInTableView:  (UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView   numberOfRowsInSection:(NSInteger)section
{
return [maTheData count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath           *)indexPath
{
UITableViewCell *cell = [tableView   dequeueReusableCellWithIdentifier:@"tvcItems"];
UILabel *lblName = (UILabel *)[cell viewWithTag:100];
[lblName setText:[maTheData objectAtIndex:   [indexPath row]]];
return cell;
}

- (void)tableView:(UITableView *)tableView   commitEditingStyle:         (UITableViewCellEditingStyle)editingStyle      forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
[maTheData removeObjectAtIndex:[indexPath row]];
// Delete row using the cool literal version of [NSArray     arrayWithObject:indexPath]
[tableView deleteRowsAtIndexPaths:@[indexPath]       withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle ==  UITableViewCellEditingStyleInsert) {
// Insert something into the array, and you can just    add a populated NSIndexPath of   data or simplr reload    data
[maTheData addObject:@"I'm a new item!"];
[tableView reloadData];
}
}

- (void)tableView:(UITableView *)tableView  moveRowAtIndexPath:(NSIndexPath *)fromIndexPath   toIndexPath:(NSIndexPath *)toIndexPath
 {
NSString *mover = [maTheData objectAtIndex: [fromIndexPath row]];
[maTheData removeObjectAtIndex:[fromIndexPath    row]];
[maTheData insertObject:mover atIndex:[toIndexPath row]];

[tableView setEditing:NO animated:YES];

}

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



- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView setEditing:YES animated:YES];
 } 
4

1 回答 1

-2

要在应用程序重新启动时保留数据,您必须将maTheDatainto的内容序列化NSData,然后NSData通过 将 的内容写入磁盘NSUserDefaults,或者写入您自己选择的文件。在后一种情况下,您还必须决定将该文件放在哪个文件夹中 - 我建议使用 Application Support 文件夹,或者无论如何,而不是Documents 文件夹。

我知道这不是复制和粘贴解决方案,但它应该让您开始进一步的研究。只需阅读 Apple 文档和 google,网上有很多资源可以详细说明如何执行此操作。

于 2013-06-12T06:15:35.547 回答