1。我创建了一个Maste-Detail Application
项目,如下所示:
3.更改代码:
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
NSManagedObject *object = [self.fetchedResultsController objectAtIndexPath:indexPath];
// cell.textLabel.text = [[object valueForKey:@"timeStamp"] description];
UILabel *label = (UILabel*)[cell.contentView viewWithTag:11];
label.text = [[object valueForKey:@"timeStamp"] description];
}