configureCall:atIndexPathに渡されるセルオブジェクトで何が起こっているのか少し戸惑っています。何が起こっているかはわかりますが、configureCall:atIndexPath:がUITableViewCellを戻り値として返さないのは奇妙です。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellID = @"PLANETCELL_ID";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if(cell == nil) ...
// POPULATE CELL NEW
[self configureCell:cell atIndexPath:indexPath];
return cell;
}
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
Planet *managedPlanet = [[self fetchedResultsController] objectAtIndexPath:indexPath];
[[cell textLabel] setText:[managedPlanet name]];
[[cell detailTextLabel] setText:[managedPlanet type]];
}