gpt4 book ai didi

ios - 将文本字段的值与 objective-c 中的数组内容匹配

转载 作者:行者123 更新时间:2023-11-28 19:11:49 25 4
gpt4 key购买 nike

我有一些数组,其内容是从数据库中选取的。我想将我在“searchTextField”中输入的文本与从数据库中获取的数组内容相匹配。

例如:我的数组包含,myArray={'bat man','bat and ball','ball'};如果我在“searchTextField”中输入了“bat”;它必须显示数组中匹配文本的索引(在本例中为索引 0 和 1)。

我怎样才能做到这一点..等待您的帮助..

最佳答案

NSMutableArray *tempArray = [NSMutableArray arrayWithObjects:@"bat man",@"bat and ball",@"ball", nil];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF contains[c] 'bat'"];
NSArray *result = [tempArray filteredArrayUsingPredicate:predicate];

result 数组将包含过滤后的对象,从那里您可以获得索引:

[tempArray indexOfObject:/the object from result array, one by one/]

contains[c] 表示搜索将不区分大小写。有关谓词的更多信息:https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Predicates/Articles/pUsing.html

编辑

将 textField 的委托(delegate)设置为 self。在转到 YourFile.h 之前,添加 UITextFieldDelegate。现在在 textFieldShouldReturn 中执行此操作:

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
[textField resignFirstResponder];

NSMutableArray *tempArray = [NSMutableArray arrayWithObjects:@"bat man",@"bat and ball",@"ball", nil];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF contains[c] %@",textField.text];
NSArray *result = [tempArray filteredArrayUsingPredicate:predicate];

return YES;
}

关于ios - 将文本字段的值与 objective-c 中的数组内容匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14852026/

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