NSDictionary Predicate filter on child objects

夙愿已清 提交于 2019-12-04 21:54:30

You are thinking too complicated.

  • stringWithFormat within predicateWithFormat makes no sense here.
  • No need for the "ANY" aggregate in the predicate, that is used with to-many-relationships in Core Data objects.
  • [friendDictionary objectForKey:@"Data"] returns an array, allObjects is wrong here.
  • The key is "Data", not "data".

That gives

NSPredicate *filter = [NSPredicate predicateWithFormat:@"first_name beginswith[c] %@ OR last_name beginswith[c] %@",
    friendField.text, friendField.text];
NSArray *filteredArray = [[friendDictionary objectForKey:@"Data"] filteredArrayUsingPredicate:filter];
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!