0

例如datasource中有5个对象,如果第一个对象是这样的:

Obj -> id:1,name:"A"

当我将对象的名称更改为“B”时;

Obj -> id:1,name:"B"

然后[tableView reloadData]

第一个单元格仍然显示“A”,我想将其更改为“B”

4

2 回答 2

1

在 cellForRowAtIndexpath 方法中正确管理数据源方法,因为它从数据源数组中检索值并显示它,就是这样

我怀疑问题是可重用性导致您的代码出现问题

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

     UITableViewCell *cell;
    static NSString *cellIdentifier1 = @"surveyCell";

    if (tableView== self.surveytableView) {
        cell= [tableView dequeueReusableCellWithIdentifier:cellIdentifier1];

        if(cell==nil)
        {
          //alloc the cell
          //DO NOT SET THE VALUE HERE

        }
       //here set the value
     return cell;
    }
于 2013-07-08T11:22:39.053 回答
0

这是代码,我所做的是,

  1. 创建了一个名为“DataClass”的类,它为您的表格视图提供数据
  2. 像你提到的那样创建对象,我将它存储在一个数组中(“dataSource”)
  3. 之后我将它加载到 tableview (我假设你正确连接了 tableview 数据源和委托)
  4. 我放了一个按钮来更改数据源数组中的字符串。
  5. 按钮的操作已连接到方法,并且在其中我正在重新加载表格视图


//类数据类

 @interface DataClass : NSObject
{   
    @public;   
    NSString *str;       
}

@implementation DataClass

- (id)init
{      
     [super init];
     str = nil;
     return  self;
}

@end


//viewController.h 
@interface ViewController : UIViewController<UITableViewDataSource ,UITableViewDelegate>
{
    IBOutlet UITableView *aTableView;
    IBOutlet UIButton *aButton;
}

- (IBAction)whenButtonClicked:(id)sender;

@end

//in .m file

#import "ViewController.h"
#import "DataClass.h"

@interface ViewController ()
{
    NSMutableArray *DataSource;
}

@end


// ViewController.m
@implementation ViewController


- (void)viewDidLoad
{

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

    aTableView.dataSource = self;

    aTableView.delegate = self;

    DataSource = [[NSMutableArray alloc]init];

    for(int i=0 ; i<5 ; i++)
    {

        DataClass *data = [[DataClass alloc]init];

        data->str=@"hello";

        [DataSource addObject:data];

        [data release];
    }

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *aCell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

    if(aCell == nil)
    {
        aCell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"]autorelease];
    }

   DataClass *aValue = [DataSource objectAtIndex:indexPath.row];

   aCell.textLabel.text = aValue->str;


   return aCell;
}



- (IBAction)whenButtonClicked:(id)sender
{
    DataClass *aObj = [DataSource objectAtIndex:2];//changing the 3'rd object value as yours in 5th object 

    aObj->str = @"world";

    [aTableView reloadData];
}

@end

//after "changeValue" button pressed the third row displays "world"
于 2013-07-08T11:51:35.417 回答