当我开始在 UITextfield 中输入内容时如何调用 API 运行时?

问题描述 投票:0回答:3

这是一个例子:

enter image description here

图像 1 - 它包含一个

UITextfield
emailTextField
。当我开始输入时,根据后台的关键字,将调用一个 API,该 API 将根据您的关键字给出响应。

用于搜索的API就像

url/collaborator/search

参数是,

1. token 
2. term

图像 2 - 当我开始输入“ma”之类的内容时,然后在后台必须调用 API 调用, 即 API 调用就像

url/collaborator/search?token=kdkhu67tdndodAK803i939ndAJDEw & term=ma

所以它会给出响应,并且该响应必须像下拉列表一样显示,如图所示

图像 3 - 如果输入特定名称,则根据其数据,它必须过滤电子邮件并且特定电子邮件必须出现,当我单击它时,它必须添加到文本字段中。我想要单个搜索以及多个电子邮件搜索。

url/collaborator/search?token=kdkhu67tdndodAK803i939ndAJDEw & term=komal

目前我想一次实现一个,如果多个可以执行或添加则没有问题。

那么,当我开始在文本字段中输入内容并获取数组中的数据时,如何在运行时调用API?

ios objective-c uitextfield
3个回答
1
投票

写下下面的代码,

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    NSLog(@"Data is : %@",_ccTextField.text);


    [self collaboratorApiMethod:_ccTextField.text];

    return YES;
}


// This metod is used to add collaborator, it will call API according to enetered data, JSON will receive
-(void)collaboratorApiMethod:(NSString*)valueFromTextField
{
   NSString *url =[NSString stringWithFormat:@"%@/collaborator/search?token=%@&term=%@",[userDefaults objectForKey:@"token"],valueFromTextField];
   // so this will generate in url

   // call api (REST API call)
   // you will get JSON data, store in array/dictionaries
}

假设您有一个包含电子邮件列表的数组。现在,当用户开始在文本字段中输入内容时,您必须显示电子邮件,并根据其值数据将过滤并显示建议。

写下代码,

- (UITableViewCell *)autoSuggestionField:(UITextField *)field tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath forText:(NSString *)text {

  userSearchDataCell *cell=[tableView dequeueReusableCellWithIdentifier:@"userSearchDataCellId"];

    if (cell == nil)
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"userSearchDataCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
    }

    NSArray *emails = emailArray;

   if (text.length > 0) {
        NSPredicate *filterPredictate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@",text];
        months = [emailArray filteredArrayUsingPredicate:filterPredictate];
   }


    cell.emailLabel.text = emails[indexPath.row];
}


 - (NSInteger)autoSuggestionField:(UITextField *)field tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section forText:(NSString *)text {

    if (text.length == 0) {
        return emailArray.count;
    }

    NSPredicate *filterPredictate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@", text];
     NSInteger count = [emailArray filteredArrayUsingPredicate:filterPredictate].count;
    return count;

}


- (CGFloat)autoSuggestionField:(UITextField *)field tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath forText:(NSString *)text {
    return 65;
}


- (void)autoSuggestionField:(UITextField *)field tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath forText:(NSString *)text {
    // NSLog(@"Selected suggestion at index row - %ld", (long)indexPath.row);

    NSArray *emails = emailArray;

    if (text.length > 0) {
        NSPredicate *filterPredictate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[cd] %@", text];
        months = [emailArray filteredArrayUsingPredicate:filterPredictate];
    }

   self.emailLabel.text =  emails[indexPath.row];

}

0
投票

你可以用一些棘手的方法来做到这一点,我经常使用的方法如下

将编辑更改事件添加到您的文本字段,因为它会告诉您文本已更改

[_txtField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];


- (void)textFieldDidChange :(UITextField *) textField {
    if ([textField.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]].length>0) {
        // make you api call
    }
}

编辑:

为了显示结果,您可以使用表格视图。或类似 SearchTextFieldMLPAutoCompleteTextField


0
投票

非常简单,使用 UItextField 操作即可。

在viewDidLoad中添加这一行

txtSearch.addTarget(self, action: #selector(self.textFieldValueChanged(_:)), for: UIControl.Event.editingChanged)

每次文本字段值更改时,您都会在此功能中得到结果

@objc func textFieldValueChanged(_ textField: UITextField)
{
    print(textField.text ?? "")
    //call your api here
}
© www.soinside.com 2019 - 2024. All rights reserved.