我正在尝试根据字母过滤我的联系人,就像这样
NSArray *sectionArray = [contactAdd filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF beginswith[c] %@", [self.friendListSection objectAtIndex:section]]];
但这里的问题是 contactAdd 不是一个常规数组,它的 CFArray 定义为
@property CFArrayRef contactAdd;
所以这段代码不起作用,是否有任何替代方法可以将上述代码用于 CFArray 或任何其他解决方案来获得所需的结果?
注意:我不想将我的联系人更改为常规数组,我只需要使用 CFArray