1

在我的应用程序中,用户使用 coreData 将单元格添加到 tableView。这工作得很好。但现在我希望表格视图有部分。

添加新单元格的 viewController 如下所示:

@property (strong) NSManagedObject *travel;
    ...
-(void)viewDidLoad{
            countryName = [[NSArray alloc] initWithObjects:
                             @"USA", @"England", @"Italy", nil];
    countryLabel.text= [countryName objectAtIndex:[picker selectedRowInComponent:0]];

  } 
    - (IBAction)save:(id)sender {

            [self.travel setValue:countryLabel.text forKey:@"country"];
}

并在 viewController 中显示 tableView 中的单元格:

       @property (strong) NSMutableArray *travelAll;
  ...
         NSManagedObjectContext *managedObjectContext = [self managedObjectContext];
            NSPredicate *predicate=[NSPredicate predicateWithFormat:@"position == %@",_positionString];
            NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Travel"];
            [fetchRequest setPredicate : predicate ];
            self.travelAll = [[managedObjectContext executeFetchRequest:fetchRequest error:nil] mutableCopy];  

        [self.tableView reloadData];

        ...

        - (NSString *)tableView:(UITableView *)tableView
        titleForHeaderInSection:(NSInteger)section
        {    NSArray* headers = [NSArray arrayWithObjects:@"USA",@"England","Italy",nil];

            return [headers objectAtIndex:section];
        }


        - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
        {
            // Return the number of sections.
            return 3;
        }

        - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        {
            return [self.travelAll count];
        }

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

            NSManagedObject *travel = [self.travelAll objectAtIndex:indexPath.row];
        ...
        return cell;
        }

但是现在我的 tableView 我只有这三个部分(标题),但我无法向它们添加单元格。例如:用户选择美国作为他的新单元格,所以这个单元格应该显示在美国部分

4

1 回答 1

0

您的数据源方法有缺陷。例如,您为每个部分返回相同的单元格数据。还有其他问题。

It is much better to use a NSFetchedResultsController. Start from the Apple templates (you get that if you create a new project and choose "Use Core Data"), that employ the fetched results controller.

Your section design becomes very simple then: it is enough to simply specify the sectionNameKeyPath property.

于 2013-08-09T11:27:27.987 回答