1

次のような Core Data 対多の関係があります。

Athlete(evals)<->>Eval(whosEval)

データベース内のすべてのアスリートを表示するアスリート用のテーブル ビューがあります。サブタイトルのテキストを Eva​​l 属性に設定したいと思います。たとえば、「date_recorded」と呼ばれるとしましょう。問題は、各アスリートに対して複数の評価が存在する可能性があることです。evalArray の最後のオブジェクトを選択し、各アスリートの相関する Eval 属性を表示する必要があるため、各アスリートのサブタイトル テキストはおそらく異なります。テーブル内のすべてのセルに対してこれを行うにはどうすればよいですか? ここに私がこれまでに持っているものがあります:

allathletes.m

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

    Athlete *athlete = (Athlete *)[athleteArray objectAtIndex:indexPath.row];
    cell.textLabel.text =[athlete full];
    cell.detailTextLabel.text = //eval attribute "date_recorded"

    AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
    _managedObjectContext = [appDelegate managedObjectContext];

    NSFetchRequest *request = [[NSFetchRequest alloc] init];

    NSFetchRequest *athleteRequest = [[NSFetchRequest alloc] init];

    [athleteRequest setEntity:[NSEntityDescription entityForName:@"Athlete" inManagedObjectContext:_managedObjectContext]];
    NSError *athleteError = nil;
    NSPredicate *athletePredicate = [NSPredicate predicateWithFormat:@"full == %@", athlete.full];
    [athleteRequest setPredicate:athletePredicate];
    NSArray *results = [_managedObjectContext executeFetchRequest:athleteRequest error:&athleteError];
    Athlete *currentAthlete = [results objectAtIndex:0];

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"whosEval == %@", currentAthlete];
    [request setPredicate:predicate];
    NSEntityDescription *eval = [NSEntityDescription entityForName:@"Eval" inManagedObjectContext:_managedObjectContext];
    [request setEntity:eval];



    NSSortDescriptor *sortDescriptor =
    [[NSSortDescriptor alloc] initWithKey:@"date_recorded"
                                ascending:NO
                                 selector:@selector(localizedCaseInsensitiveCompare:)];
    NSArray *sortDescriptors = [[NSArray alloc]initWithObjects:sortDescriptor, nil];
    [request setSortDescriptors:sortDescriptors];

    NSError *error = nil;
    NSMutableArray *mutableFetchResults = [[_managedObjectContext executeFetchRequest:request error:&error] mutableCopy];
    if (mutableFetchResults == nil){
        //handle error
    }

    NSMutableArray *lastEvalArray = mutableFetchResults;

Eval *lastEval = lastEvalArray.lastObject;

cell.detailTextLabel.text = lastEval.date_recorded;

    return cell;
}
4

1 に答える 1

1

属性の場合date_recordedは、次のNSDateことができます

Athlete *athlete = (Athlete *)[athleteArray objectAtIndex:indexPath.row];
NSDate *lastRecorded = [athlete valueForKeyPath:@"@max.evals.date_recorded"];

次に、 aを使用して anNSDateFormatterに変換し、それを に割り当てます。lastRecordedNSStringcell.detailTextLabel.text

于 2013-08-18T20:26:30.150 に答える