2

我正在尝试通过 NSUserDefaults 保存数据并在 tableView 上查看它但是在我单击保存按钮后没有任何反应,在我停止并再次运行应用程序之后我保存的数据我可以看到它每次覆盖旧数据。难道我做错了什么?或者我应该使用与 NSUserDefaults 不同的东西吗?

提前致谢。

-(IBAction)save{

    NSUserDefaults *add1 = [NSUserDefaults standardUserDefaults];
    [add1 setObject:txt1.text forKey:@"txt1"];

    [add1 synchronize]; 
}


- (void)viewDidLoad
{
    [super viewDidLoad];

    NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
    self.dataArray = [NSArray arrayWithObjects:[prefs objectForKey:@"txt1"], nil];
}

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

 - (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";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

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

    return cell;
}
4

3 回答 3

2

正如A for Alpha所说,尝试一下,此外我也对您的save方法定义有疑问。只需尝试将其更改为以下内容

-(IBAction)save:(id)sender{
    NSUserDefaults *add1 = [NSUserDefaults standardUserDefaults];
    [add1 setObject:txt1.text forKey:@"txt1"];

    [add1 synchronize];
    [tableView reloadData];
}

这可能对你有用。

于 2012-05-08T14:05:57.190 回答
2

您的代码中有两个问题:

您没有刷新表格视图。你可以通过调用来做到这一点:

[self.tableView reloadData]; // Or whatever property is pointing to your tableview

每次保存一个值时,都会将其保存在同一个键 ( txt1) 下,这就是每次都覆盖的原因。如果你想要一个项目列表(一个数组)并将项目附加到这个数组中,你可以这样做:

NSMutableArray *myList = [[[NSUserDefaults standardUserDefaults] valueForKey:@"myTxtList"] mutableCopy];
[myList addObject:txt1.text];
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithArray:myList] forKey:@"myTxtList"];
[add1 synchronize]; 
self.dataArray = myList;
[self.tableView reloadData];

PS当然你需要dataArray在你的viewDidLoad

self.dataArray = [[NSUserDefaults standardUserDefaults] objectForKey:@"myTxtList"];
于 2012-05-08T14:10:20.117 回答
1

我想您需要 [yourTableView reloadData]在将数据保存到userDefaults. 这应该可以解决您的问题。

于 2012-05-08T13:50:04.840 回答