2

我正在尝试通过 NSUserDefaults 保存我的数据并在表格视图中查看它。我已经将四个文本数据设置为一个数组(dataArray),所以我可以在表格视图中查看它。但我无法将数据加载到表格视图中。所以我错过了什么吗?

提前致谢。

-(IBAction)save{

NSUserDefaults *add1 = [NSUserDefaults standardUserDefaults];
[add1 setObject:txt1 forKey:@"txt1"];
[add1 setObject:txt2 forKey:@"txt2"];
[add1 setObject:txt3 forKey:@"txt3"];
[add1 setObject:txt4 forKey:@"txt4"];

[add1 synchronize]; 
}

- (void)viewDidLoad
{
[super viewDidLoad];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
self.dataArray = [NSArray arrayWithObjects:[prefs objectForKey:@"txt1"], [prefs objectForKey:@"txt2"], [prefs objectForKey:@"txt3"],[prefs objectForKey:@"txt4"] nil];
}


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

// Set up the number of rows
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [dataArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *string = [dataArray objectAtIndex:indexPath.row];
    static NSString *CellIdentifier = @"Cell";

    UITableView *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
}
4

3 回答 3

1

您必须调用[yourUserDefaultObject synchronize];以保存 的状态NSUserDefaults,但您实际上并不需要创建 NSUserDefaults 的 4 个对象,您只需创建一次,然后调用setObject:forKey:同一个实例,然后再调用synchronize.
然后只需设置cell.textLabel.text=string;cellForRowAtIndexPath回调中设置单元格的标签。

于 2012-05-05T09:58:04.297 回答
1

首先同步 nsuserdefaults 和

您需要分配 tableviewcell 并将文本分配给文本标签

在 cellForRowAtindexpath 方法中添加以下代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *string = [dataArray objectAtIndex:indexPath.row];

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

  if(cell==nil)
{
 cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:CellIdentifier] autorelease];
}
  cell.textLabel.text=string;

  return cell;
}
于 2012-05-05T09:58:08.230 回答
0

老兄添加以下行,因为您需要在单元格的某处添加测试。这样可以显示在tablviewcell. 如果可能的话,请先制作数组而不是保存整个数组NSUserDefaults,这样可以节省时间,这是进行编码的更好方法。

cell.textLabel.text=string;

已编辑>>>

 UILabel *label;
label = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 50, 40)];

label.text = string; 

// 或者

label.text = @"Hi I am here..";

label.backgroundColor = [UIColor greenColor];
label.textColor = [UIColor whiteColor];
[cell addSubview:label]; 
于 2012-05-05T09:59:51.860 回答