3

我有一对多的父子实体书<->>借

  • 姓名
  • 借(关系)

  • 借用日期
  • 笔记
  • 书(关系)

我想NSFetchedResultsController使用最大NSDate的子实体对 Book 实体进行排序,以显示最近借过的书。

我怎样才能做到这一点 ?我尝试使用我自己的方法,使用 Book 上的 Category

- (NSArray *)borrowSortedByborrowedDate
{
    NSSortDescriptor *sortByCreatedDate = [NSSortDescriptor sortDescriptorWithKey:@"borrowDate" ascending:NO];
    NSArray *sortedArray = [self.histories sortedArrayUsingDescriptors:[NSArray arrayWithObject:sortByCreatedDate]];
    return sortedArray;
}

- (NSDate *)recentBorrowDate
{
    Borrow *borrow = [[self borrowSortedByborrowedDate] objectAtIndex:0];
    return borrow.borrowDate;
}

并将其放入sortDescriptor

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"recentBorrowDate" ascending:YES];

但它没有用。

这是我获取的请求(没有用)

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

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

[fetchRequest setFetchBatchSize:20];

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"recentBorrowDate" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptor, nil];

[fetchRequest setSortDescriptors:sortDescriptors];

我的预期结果是

  • 书名1(借到今天)
  • 书名2 (borrowDate昨天)
  • 书名3(borrowDate很多天前)
4

3 回答 3

0

您可能会考虑向lastBorrowedDateBooks 托管对象添加属性的可能性。如果您想对该字段进行排序和搜索,则有必要优化您的 MOM 以获得更好的效率。你也可以让代码更简单。

于 2012-05-29T13:53:55.177 回答
0

我有同样的问题,这是我目前实现所需输出的解决方法。(也许这是唯一的方法,但我仍在寻找......)

当创建一个新的 Borrow 时,只需同时更新 book.lastBorrowDate 属性。

// Create new Borrow and set Book
Borrow *newBorrow = (Borrow *)[NSEntityDescription insertNewObjectForEntityForName:@"Borrow" inManagedObjectContext:self.managedObjectContext];
newBorrow.book = theBook;
newBorrow.borrowDate = [NSDate date];
newBorrow.note = theNote;

// Now also update our book's lastBorrowDate tracking property
theBook.lastBorrowDate = [NSDate date];

// Save all our changes
NSError *error = nil;
if (![self.managedObjectContext save:&error]) {
    // Something went horribly wrong...
    NSLog(@"Unresolved error: %@, %@, %@", error, [error userInfo],[error localizedDescription]);
    abort(); // Fail
}

现在,当稍后将它们拉出来时,这很容易......

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

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

[fetchRequest setFetchBatchSize:20];

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"lastBorrowDate" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptor, nil];

[fetchRequest setSortDescriptors:sortDescriptors];
于 2012-05-24T12:10:39.197 回答
0

我实际上在类似的情况下也有类似的问题。你可以在这里查看帖子:Custom NSSortDescriptor on complex object

总而言之,我需要同时使用子属性和实体属性进行排序。找到的唯一解决方法是使用自定义排序描述符并在之后应用过滤器。这意味着您必须执行 fetch,获取 fetchResults,然后将它们排序到一个数组中。不过,我主要担心这种解决方法的性能问题。在您的情况下,自定义排序可能类似于:

@interface Book(category) {}
@end
@implementation Book(category) 
- (NSDate*)getMostRecentDate {
  NSDate* mostRecentDate = [NSDate dateWithTimeIntervalSince1970:0];
  for(Borrow* b in [self borrows]) {
    mostRecentDate = [mostRecentDate laterDate:[b borrowDate]];
  }
  return mostRecentDate;
}
@end

@interface SortDescriptor : NSSortDescriptor {}
@end
@implementation SortDescriptor
- (id)copyWithZone:(NSZone*)zone
{
    return [[[self class] alloc] initWithKey:[self key] ascending:[self ascending] selector:[self selector]];
}
- (NSComparisonResult)compareObject:(id)object1 toObject:(id)object2
{
    return [[(Book*)object1 getMostRecentDate] compare:[(Book*)object2 getMostRecentDate]];
}
@end

让我知道您对此解决方案的看法。我正在开始测试以决定是更改排序以使其更简单还是使用 NSArray。

于 2012-06-25T21:54:27.673 回答