0

我有一个带有 NSMutableDictionary 的 .plist 文件,我正在像这样填充 UITableView:

- (void)viewDidLoad
{
[super viewDidLoad];

NSString *myFile = [[NSBundle mainBundle]
                    pathForResource:@"courses" ofType:@"plist"];
courses = [[NSMutableDictionary alloc] initWithContentsOfFile:myFile];
courseKeys = [courses allKeys];

}

和:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:    (NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Course";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

// Configure the cell...

NSString *currentCourseName = [courseKeys objectAtIndex:[indexPath row]];
[[cell textLabel] setText:currentCourseName];

return cell;
}

我试图允许用户使用 UiTableView 单元格滑动+删除并将新项目“添加”到 plist。这是我用来执行此操作的代码:

- (void)tableView:(UITableView *)tableView commitEditingStyle:  (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
    // Delete the row from the data source
    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]     withRowAnimation:UITableViewRowAnimationFade];
}   
else if (editingStyle == UITableViewCellEditingStyleInsert) {
    // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view

当我运行模拟器并执行此操作时,它给了我一个错误,说明

"无效更新:第 0 节中的行数无效。更新后现有节中包含的行数 (7) 必须等于更新前该节中包含的行数 (7),加上或减去从该部分插入或删除的行数(0 插入,1 删除)加上或减去移入或移出该部分的行数(0 移入,0 移出)。'"

有谁可以帮我离开这里吗?

4

2 回答 2

2

您正在从 courseKeys 数组中填充您的表格。所以在你的委托方法中

- (void)tableView:(UITableView *)tableView commitEditingStyle:  (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
 {
     //whether it is an add or edit or delete modify your array from which you are populating the table and reload the table
 }
于 2012-05-20T04:22:34.940 回答
1

您正在从表中删除该行,而不是从您的数据源中。CourseKeys 需要是一个 mutableArray,您可以从中删除已删除的键。

于 2012-05-20T04:34:28.107 回答