如何使用魔法唱片?findByAttribute 获取有序行?
就像我想做的那样:
[Service findByAttribute: @"parent" withValue: sparent];
但是对 name 属性返回的每一行进行排序。
如何使用 Magical Record 做到这一点?
如何使用魔法唱片?findByAttribute 获取有序行?
就像我想做的那样:
[Service findByAttribute: @"parent" withValue: sparent];
但是对 name 属性返回的每一行进行排序。
如何使用 Magical Record 做到这一点?
您正在寻找的方法是:
[Service findByAttribute:@"parent"
withValue:sparent
andOrderBy:@"name"
ascending:YES];
这是他们的头文件的链接,其中定义了所有获取方法。