gpt4 book ai didi

ios - 您好,我需要过滤联系人列表,但 NSPredicate 不起作用

转载 作者:行者123 更新时间:2023-11-29 00:39:59 24 4
gpt4 key购买 nike

我需要过滤联系人列表,但在附加一定数量的字母后,过滤器会损坏示例图像和我正在使用的 NSPredicate,但不能复制该列表。

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"CAST(SELF.compositeName, 'NSString') contains[cd] %@",self.SearchNames.text];

enter image description here

enter image description here

最佳答案

您的谓词语法错误。

let predicate = NSPredicate(format: "SELF.compositeName CONTAINS[cd] %@", searchText)
let filtredArray = NSArray(array: YourContactarray.filteredArrayUsingPredicate(predicate))

当我们使用字典数组时,SELF.key 对于谓词来说是有效的。

在此代码之后,使用 filtredArray 重新加载表,您可以将其存储在另一个数组中以供全局访问。如果您在此代码中遇到任何问题,请告诉我。

关于ios - 您好,我需要过滤联系人列表,但 NSPredicate 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39738075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com