2

データ モデルにリレーションシップを持つ 2 つのオブジェクトがあります...

  1. 人物 {氏名、役職、役職}
  2. 位置 {position, PositionSort}

上記のそれぞれには、独自のクラス ファイル (NSManagedObject のサブクラス) があります。上記の PositionSort で並べ替えようとしています。現在、次のコードを使用して位置で並べ替えることができます。

NSSortDescriptor *sortDescriptorPosition = [[NSSortDescriptor alloc] initWithKey:@"position" ascending:YES];

PositionSort にアクセスして使用する方法がわかりません。何か案は?ありがとう!

更新: 全機能を追加しました...

- (NSFetchedResultsController *)fetchedResultsController
{
    if (__fetchedResultsController != nil) {
        return __fetchedResultsController;
    }

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

    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Person" inManagedObjectContext:self.managedObjectContext];
    [fetchRequest setEntity:entity];

    [fetchRequest setFetchBatchSize:20];

    NSSortDescriptor *sortDescriptorState = [[NSSortDescriptor alloc] initWithKey:@"position.positionSort" ascending:YES];

    NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptorState, nil];

    [fetchRequest setSortDescriptors:sortDescriptors];


    NSPredicate *searchPredicate = [NSPredicate predicateWithFormat:@"(companyID == %@)", company.companyID];
    [fetchRequest setPredicate:searchPredicate];

    NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:@"position.positionDescription" cacheName:nil];

    aFetchedResultsController.delegate = self;
    self.fetchedResultsController = aFetchedResultsController;

    NSError *error = nil;
    if (![self.fetchedResultsController performFetch:&error]) {
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    }

    return __fetchedResultsController;
}

上記のコードを使用すると、次のエラーが発生しRuntimeます。

2012-08-12 10:29:45.499 College[269:707] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<__NSCFString 0xd6bd310> valueForUndefinedKey:]: this class is not key value coding-compliant for the key positionDescription.'
4

1 に答える 1

6

正確に並べ替えたいかどうかはわかりませんが、次を使用して、値を使用してオブジェクトをNSSortDescriptor並べ替えることができます。PersonPositionSort

NSSortDescriptor *sortDescriptorPosition = [[NSSortDescriptor alloc] initWithKey:@"position.PositionSort" ascending:YES];

おそらく、あなたはこれを探しました...

于 2012-08-12T12:37:48.517 に答える