gpt4 book ai didi

ios - 如何在 ios 中的 UIPickerview 上添加搜索选项?

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

我在我的项目中使用 UIActionsheet uipickerview。这里,我是根据他的id传值。我的意思是,在 uipickerview 列表中它将显示名称,并在通过后获取其 ID。

因此,对于 5-10 个值没问题,但假设我有超过 100 个值及其 ID,那么滚动、查找和选择一个值会花费很多时间。

所以,我想在其中添加搜索选项。因此,在单击我的文本字段后,选择器或弹出窗口将会出现。它首先显示一些列表,以及那里可用的搜索选项,因此用户可以键入任何一个或两个单词,因此根据其单词数据将根据单词出现(自动搜索完成)。

我该如何实现。

最佳答案

如果有人想快速...创建一个名为 txtSearch 的文本字段,然后在 ViewDidload 中添加以下两行

self.txtSearch.delegate=self
self.txtSearch.addTarget(self, action: #selector(self.textFieldValueChanged(TextField:)), for: UIControlEvents.editingChanged)

func textFieldValueChanged(TextField:UITextField)

{

if((TextField.text?.characters.count)!>0)
{
self.filteredArray = (self.searchInArray(srchArray: self.ArraywithFullData, withKey: "key value", Characters: TextField.text!))!
}
else
{

self.filteredArray = self.ArraywithFullData.mutableCopy() as! NSMutableArray
}

self.pickerView.reloadData()


}
func searchInArray(srchArray:NSMutableArray, withKey:String,Characters:String)->NSMutableArray
{

let resultArray=NSMutableArray()
for index in 0..<srchArray.count
{
let Dict = srchArray[index] as! [String:Any]
if let stringmatcher = Dict[withKey] as? String
{
if(stringmatcher.contains(find: Characters))
{
resultArray.add(Dict)

}
else
{

}
}

}

return resultArray

}
extension String {

func contains(find: String) -> Bool{
return self.range(of: find) != nil
}

对于 Objective-C,您必须执行如下操作。但不要忘记调用 textField Delegates。

NSMutableArray *filteredArray;
NSMutableArray *ArraywithFullData;
self.txtSearch.delegate=self
[self.txtSearch addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
//

-(void)textFieldValueChanged:(UITextField *)TextField

{

if((TextField.text.length)>0)
{
filteredArray = [self searchInArray:ArraywithFullData withKey:@"key value" andCharacters:TextField.text];

}
else
{

filteredArray = [ArraywithFullData mutableCopy];
}

[self.pickerView reloadData];


}
-(NSMutableArray *)searchInArray:(NSMutableArray*)srchArray withKey:(NSString *)key andCharacters:(NSString *)charecters
{

NSMutableArray *resultArray= [[NSMutableArray alloc]init];
for (int index=0 ; index<srchArray.count; index++)
{
NSMutableDictionary *Dict = srchArray[index];
if ([Dict valueForKey:key] != nil)
{
NSString * stringmatcher = [Dict valueForKey:key];
if ([stringmatcher containsString:charecters])
{
[resultArray addObject:Dict];

}
else
{

}
}

}

return resultArray;

}

请注意,如果数据不是字典数组的形式,您可以删除有关字典的代码工作

关于ios - 如何在 ios 中的 UIPickerview 上添加搜索选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46843437/

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