gpt4 book ai didi

nsmutable 数组上的 iphone sdk 搜索栏

转载 作者:行者123 更新时间:2023-12-03 20:46:41 25 4
gpt4 key购买 nike

无论如何我可以在 nsmutable 数组上使用搜索栏。我有这样的数据:

 [listOfItems addObject:[NSArray arrayWithObjects:
@"Pakistan",
@A country with lot of salt mines",
nil]
];

我在表格 View 上显示巴基斯坦,当单击它时,我进入另一个 View ,其中包含有关它的信息。

我看到带有数组和字典的搜索栏,但在可变数组上找不到,请帮忙。提前致谢

最佳答案

搜索栏中有一个委托(delegate)方法可以帮助您:

-(void) searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText

然后就可以使用谓词来过滤数据

NSPredicate * predicate =  [NSPredicate predicateWithFormat:@"(title CONTAINS[cd] %@), searchText];
self.displayedData = [NSMutableArray arrayWithArray:[self.allData filteredArrayUsingPredicate:predicate]];

关于nsmutable 数组上的 iphone sdk 搜索栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5497052/

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