我有一个表格视图,它需要显示来自不同关系的所有不同目标实体。为简单起见,让我们看一个关系,从实体 Operation 到 Goal 的关系,relationshipname: goal (inverse: operationisation)
我想知道如何填充单元格
这就是我所拥有的:
- (void)viewWillAppear:(BOOL)animated{
goals = [[NSArray alloc] init];
goals = [[self.operation valueForKeyPath:@"goal.goalNaam"] allObjects] ;
}
和
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier];
}
if(indexPath.section == 2){
Goal *goal = (Goal*)[goals objectAtIndex:indexPath.row];
cell.textLabel.text = goal.goalNaam;
}
// Configure the cell...
return cell;
}
我想知道这是这样做的方法。模拟器卡住但没有给出错误..