NSSortDiscriptor排序正值

时间:2014-02-19 08:39:07

标签: ios objective-c nssortdescriptor

在我的核心数据中,我要求按升序排序x个数量的对象(NSNumber [double])。 问题是它还给了我负数。 我知道这很有道理,但我只想要正数,我该怎么做?

NSManagedObjectContext *context = generateManagedObjectContext();

    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:kCORE_DATA_ALL_TRAPS_ENTITY inManagedObjectContext:context];
    [fetchRequest setEntity:entity];

    // Specify how the fetched objects should be sorted
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:DISTANCE_TO_CLOSE_POINT ascending:YES];
    [fetchRequest setSortDescriptors:[NSArray arrayWithObjects:sortDescriptor, nil]];

    // Limit the restlus to specific number
    [fetchRequest setFetchLimit:numberOfTraps];

    NSError *error = nil;
    NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];
    if (fetchedObjects == nil || fetchedObjects.count == 0) {
        NSLog(@"%s error: %@", __PRETTY_FUNCTION__, error.localizedDescription);
        return nil;
    }

2 个答案:

答案 0 :(得分:2)

试试这个,

 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"distance >= %d", 0];

[fetchRequest setPredicate:predicate];

答案 1 :(得分:1)

正如大多数评论所提到的,你只使用了NSSortDescriptor,你也可以使用NSPredicate来完成这项工作。

您可以在Apple文档here中找到示例。有一节专门讨论使用它们。