gpt4 book ai didi

objective-c - 从字典数组中搜索值

转载 作者:行者123 更新时间:2023-12-02 15:14:15 26 4
gpt4 key购买 nike

我有字典的 NSMutableArray:类似的东西:

(
{
"Key1" = "Name1";
"Key2" = "Age1";
"Key3" = "Address1";
},
{
"Key1" = "Name2";
"Key2" = "Age2";
"Key3" = "Address2";
},
{
"Key1" = "Name3";
"Key2" = "Age3";
"Key3" = "Address3";
}
)

使用此代码搜索键 1 值。用户甚至可以输入字母表,我必须使用包含该字母表的键搜索所有字典。

NSPredicate *filter = [NSPredicate predicateWithFormat:@"'Key1' =[cd] %@", searchstring];
NSArray *filteredContacts = [DisplayArray filteredArrayUsingPredicate:filter];

但是这个谓词不起作用。请帮忙。

最佳答案

尝试使用以下代码进行检查。

NSPredicate 中使用 contains[c],如下所示:

NSPredicate *filter = [NSPredicate predicateWithFormat:@"Key1 contains[c] %@ ",searchstring];
NSArray *filteredContacts = [DisplayArray filteredArrayUsingPredicate:filter];

关于objective-c - 从字典数组中搜索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41443123/

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