2

我已成功将通讯录数据存储在 Core Data 中,但我无法检索它并将其显示在 tableView 中。我错过了什么?

这就是我从核心数据中获取数据的方式。

-(void)fetchFromDatabase
{
  AddressBookAppDelegate *appDelegate =[[UIApplication sharedApplication]delegate];
  NSManagedObjectContext *context = [appDelegate managedObjectContext];
  NSEntityDescription *entityDesc = [NSEntityDescription entityForName:@"AddressBook" inManagedObjectContext:context];
  NSFetchRequest *request = [[NSFetchRequest alloc] init];
  [request setEntity:entityDesc];

  NSError *error;
  self.arrayForTable = [context executeFetchRequest:request error:&error];
   NSLog(@"fetched data = %@",[self.arrayForTable lastObject]); //this shows the data
   [self.tableView reloadData];

这是我的表格视图配置。

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

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


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

   UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
   if (cell == nil) {
   cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
   reuseIdentifier:CellIdentifier];

   if ([self.arrayForTable count]>0)
   {
       NSLog(@" table view content  = %@",[self.arrayForTable lastObject]);// this doesn't log
       AddressBook *info = [self.arrayForTable objectAtIndex:indexPath.row];
       cell.textLabel.text = info.firstName;

    }
    }
  return cell;
}
4

1 回答 1

0

self.arrayForTable正如讨论中所证明的那样,viewWillAppear 获取fetchFromDatabase.

另一个问题是程序的每次运行都会在数据库中创建新对象,从而导致重复对象。你可以

  • 在插入新对象之前删除所有对象,或
  • 对于每个名称,检查数据库中是否已存在匹配的对象,并仅在必要时插入新对象。

“Core Data Programming Guide”中的“Implementing Find-or-Create Efficiently”中描述了更高级的技术。

于 2013-09-01T12:29:17.790 回答