编辑单元格后,UITableView Cells将重新排序

时间:2013-01-01 20:24:03

标签: iphone uitableview

在我的应用中,您可以点按一个单元格,然后会显示一个新视图。您可以编辑tableviewCell的textLabel,并保存它。但是当您切换视图并返回到tableView时,单元格的顺序不同。这可能是什么原因?

这是我的代码:

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

static NSString * identifier = @"identifier";

self.cell = [tableView dequeueReusableCellWithIdentifier:identifier];

h = [self.tableArray objectAtIndex:indexPath.row];

NSString *brandModel = [[h.brand stringByAppendingString:@" "] stringByAppendingString:h.model];

self.cell.mainLabel.text = brandModel;

self.cell.nicknameLabel.text = handguns.nickname;   

return self.cell;
}

感谢您的帮助

3 个答案:

答案 0 :(得分:2)

如果你在保存UITableView单元格后重新加载tableView,那么它将被重新排序为初始值,因为你要设置单元格数据的数组就是这样。你只能更改表格查看单元格而不是数组中的数组数据位置。

下面我编写了一个UITableView代码来移动单元格,并且在推送视图后工作正常。如果我从viewWillAppear 删除重载方法

#import "MoveCellViewController.h"

@interface MoveCellViewController ()

@end

@implementation MoveCellViewController

- (void)viewDidLoad
{
 UIBarButtonItem *left=[[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UIBarButtonItemStyleBordered target:self action:@selector(edit)];
 self.navigationItem.leftBarButtonItem=left;

 myArray=[[NSMutableArray alloc]init];  //mutable array;
 myArray=[NSMutableArray arrayWithObjects:@"Aman",@"Ankit",@"Sumit",@"Hercules",@"Jackie Chan", nil];

    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

-(void)edit
{
 if (self.navigationItem.leftBarButtonItem.title==@"Edit") {
    self.navigationItem.leftBarButtonItem.title=@"Done";
    [_tableView setEditing:YES];
 }else
 {
  [_tableView setEditing:NO];
  self.navigationItem.leftBarButtonItem.title=@"Edit";
 }
}


- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
 return [myArray count];
}
// Row display. Implementers should *always* try to reuse cells by setting each cell's reuseIdentifier and querying for available reusable cells with dequeueReusableCellWithIdentifier:
// Cell gets various attributes set automatically based on table (separators) and data source (accessory views, editing controls)

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
 static NSString *cellIdentifier=@"cellIdentifier";
 UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

 if (cell==nil) {
  cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
 }

 cell.userInteractionEnabled=YES;
 cell.textLabel.text=[myArray objectAtIndex:indexPath.row];
 return cell;
}

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

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
 return UITableViewCellEditingStyleNone;
}

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
 id ob = [myArray objectAtIndex:destinationIndexPath.row];

 [myArray replaceObjectAtIndex:destinationIndexPath.row withObject:[myArray objectAtIndex:sourceIndexPath.row]];
 [myArray replaceObjectAtIndex:sourceIndexPath.row withObject:ob];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
 NextViewController *nx=[[NextViewController alloc] init];
 [self.navigationController pushViewController:nx animated:YES];
}
@end

这是工作代码,推送视图控制器后不会改变。

答案 1 :(得分:0)

试试此代码

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
     static NSString *CellIdentifier = @"Cell";

     cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];


     if (cell == nil)
     {

         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2     reuseIdentifier:nil];
     }

     Write rest of the code here
}

答案 2 :(得分:0)

请写下以下代码可能对您有所帮助!!!

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

 NSString *CellIdentifier = [NSString stringWithFormat:@"S%1dR%1d",indexPath.section,indexPath.row];
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
        cell.selectionStyle = UITableViewCellSelectionStyleNone; 
   }
h = [self.tableArray objectAtIndex:indexPath.row];

NSString *brandModel = [[h.brand stringByAppendingString:@" "] stringByAppendingString:h.model];

self.cell.mainLabel.text = brandModel;

self.cell.nicknameLabel.text = handguns.nickname;   

return self.cell;
}