我正在尝试通过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;
}
答案 0 :(得分:2)
as A for Alpha 表示尝试&此外,我对您的save
方法定义也有疑问。只需尝试将其更改为以下
-(IBAction)save:(id)sender{
NSUserDefaults *add1 = [NSUserDefaults standardUserDefaults];
[add1 setObject:txt1.text forKey:@"txt1"];
[add1 synchronize];
[tableView reloadData];
}
这可能适用于你。
答案 1 :(得分:2)
您的代码中存在两个问题:
您没有刷新tableview。您可以通过以下方式执行此操作:
[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];
P.S。当然,您需要在dataArray
:
viewDidLoad
self.dataArray = [[NSUserDefaults standardUserDefaults] objectForKey:@"myTxtList"];
答案 2 :(得分:1)
我想您需要在[yourTableView reloadData]
中保存数据后致电userDefaults
。这应该可以解决你的问题。