Use NSPredicate to filter by object attribute

£可爱£侵袭症+ 提交于 2019-12-13 14:01:34

问题


I have a mutable array of custom objects. I want to filter that array by attribute of the object, for example myObject.attributeOne.

How can I create the NSPredicate to use with

[myArrayOfObjects filterUsingPredicate:<the_predicate>]

回答1:


Use it in this way:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"FriendStatus == 1"];

NSMutableArray *filtered = [MessageArray filteredArrayUsingPredicate:predicate];


来源:https://stackoverflow.com/questions/3386079/use-nspredicate-to-filter-by-object-attribute

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!