0

我有一个 StateArray.plist 设置了 50 个字典条目,每个字典条目都包含一个带有状态名称和数字 0 的字符串。我想要做的是通过分段控件将 0 更改为 1 并保存更新的列表。我的代码在下面,不会保存更改后的号码。

-(void) viewWillAppear: (BOOL) animated 
{
 [super viewWillAppear:animated];
 nameOfStateTextField.text = [states objectForKey:NAME_KEY];
}

//segmented control
-(IBAction)visitedChanged
{
 selectedVisited = visitedSegmentedControl.selectedSegmentIndex;
}


-(IBAction)saveButton
{
 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
 NSString *documentsDirectory = [paths objectAtIndex:0];
 NSString *path = [documentsDirectory stringByAppendingPathComponent:@"StateArray.plist"];
 [states setValue:selectedVisited forKey:THERE_KEY];
 [states writeToFile:path atomically:YES];
}

更改后的分段控制值应以新的 THERE_KEY 结束,并写入 Documents 目录并保存。这里有什么问题?

4

1 回答 1

1

您需要将 NSNumber 对象放入 Dictionary 中。什么数据类型是“selectedVisited”?,我猜你在这一行没有收到错误:

 selectedVisited = visitedSegmentedControl.selectedSegmentIndex;

您选择的数据类型可能是 NSInteger。(因为 selectedSegmentIndex 是一个 NSInteger)。

您需要将值放入字典中,如下所示:

NSNumber *newValue = [[NSNumber alloc] initWithInteger:selectedVisited];
[states setValue:newValue forKey:THERE_KEY];
[newValue release];
于 2010-07-17T18:03:33.450 回答