findByAttribute魔法记录顺序

时间:2013-01-21 15:43:46

标签: objective-c ios4 ios6 magicalrecord

我如何使用魔法记录? findByAttribute获取有序行?

像我想做的那样:

[Service findByAttribute: @"parent" withValue: sparent];

但订购name属性返回的每一行。

我怎样才能使用魔法记录?

1 个答案:

答案 0 :(得分:3)

您正在寻找的方法是:

[Service findByAttribute:@"parent" 
               withValue:sparent 
              andOrderBy:@"name" 
               ascending:YES];

Here is a link到他们的头文件中,其中定义了所有的获取方法。