0

目前,我有一个表格视图,它由视频对象填充,具体取决于它们的录制日期,这些日期是[nsdate date];在录制和保存时使用的。但是,可以在一天内录制多个视频。我按日期对它们进行排序,当有多个相同日期的视频时,它会显示该日期录制的第一个视频,最近的视频按照最新的升序排列。我不确定为什么会发生这种情况,但想检查是否有多个具有相同日期的视频录制,它按标题组织它们。在 SQL 中,我可以执行以下操作:

ORDER BY DATE_RECORDED, TITLE ASC

这是我目前正在做的事情:

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

NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"whosVideo == %@", _currentPerson];
[request setPredicate:predicate];
NSEntityDescription *eval = [NSEntityDescription entityForName:@"Video" 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
}

[self setVideoArray:mutableFetchResults];
[self.tableView reloadData];

如果在同一日期记录了多个对象,我将如何处理添加第二个谓词?

4

1 回答 1

1

如果您想处理多个谓词,则必须使用 NSCompoundPredicate 尝试如下:-

NSPredicate *predicate1 = [NSPredicate predicateWithFormat:@"whosVideo == %@", _currentPerson];

NSPredicate *predicate2 = [NSPredicate predicateWithFormat:@"whosVideo == %@", _someOther];

  NSArray *subPredicates = [[NSArray alloc] initWithObjects:predicate1, predicate2,nil];

NSPredicate *predicate = [NSCompoundPredicate orPredicateWithSubpredicates:subPredicates];
于 2013-10-04T05:12:29.297 回答