2017-04-25 69 views
0

我有一个UITableView和一个UISearchBar。当应用程序加载时,我将某个List传递给表源。当我在UISearchBar中输入查询并点击搜索按钮时,我会进行API调用以获取新列表。更改UISearchBar搜索按钮上的UITableView数据源点击

现在我想用我从API获取的新列表替换tableview的源代码。

我可以过滤最初通过的列表UISearchView文本更改,但我想提供一个全新的列表到搜索按钮单击表上。

有没有一种方法可以使用UISearchView更改表格源与新列表?还是我需要创建一个自定义搜索栏?

我试过将一个空值传递给表源,然后传递新的列表,但是这并没有做任何事情。

任何帮助表示赞赏

编辑

MytableViewController

Initialize() 
     { 
      if (!string.IsNullOrEmpty(savedRelatedList)) 
       { 
        if (CrossConnectivity.Current.IsConnected) 
        { 

         loadingOverlay = new LoadingOverlay(UIScreen.MainScreen.Bounds, message); 
         this.View.Add(loadingOverlay); 

         //Fetch Related People 
         var relatedData = await O365Service.GetRelatedPeople(GRAPH_ACCESS_TOKEN); 
         if (relatedData != null) 
         { 
          relatedPeopleList = relatedData.Value.Where(d => !string.IsNullOrEmpty(d.userPrincipalName) && (!d.userPrincipalName.Equals(my_email))).ToList(); ; 
          if (relatedPeopleList != null && relatedPeopleList.Count > 0) 
          { 
           NSUserDefaults.StandardUserDefaults.SetString(JsonConvert.SerializeObject(relatedPeopleList.ToList()), "RelatedList"); 

          } 
          else 
          { 
           relatedPeopleList = null; 
          } 
         } 
         else 
         { 

         } 
         loadingOverlay.RemoveFromSuperview(); 
        } 
        else 
        { 
         DialogHelper.CreateAndShowDialog("Network Error", "Check your internet connectivity"); 

        } 
       } 

       relatedPeopleList = new List<PeopleRelated>(); 
       relatedPeopleList.Add(new PeopleRelated { displayName = "Test", }); 

       searchNewPeopleBar.CancelButtonClicked += delegate 
       { 
        searchNewPeopleBar.Text = ""; 
        isSearch = false; 
        peopleList = null; 
        tablePeopleSearch.ReloadData(); 
        searchNewPeopleBar.ResignFirstResponder(); 
       }; 

       var dataSource = new PeopleSearchSource(this); 
       tablePeopleSearch.Source = dataSource; 
       searchNewPeopleBar.SearchButtonClicked += SearchBar_SearchButtonClicked; 
     } 


     searchNewPeopleBar.CancelButtonClicked += delegate 
       { 
        searchNewPeopleBar.Text = ""; 
        isSearch = false; 
        peopleList = null; 
        tablePeopleSearch.ReloadData(); 
        searchNewPeopleBar.ResignFirstResponder(); 
       }; 

     private async void SearchBar_SearchButtonClicked(object sender, EventArgs e) 
     { 
      var searchText = searchNewPeopleBar.Text; 
      if(string.IsNullOrEmpty(searchText)) 
      { 
       isSearch = false; 
      } 
      isSearch = true; 

      //Make api call and get new list 
      tablePeopleSearch.ReloadData(); 
     } 

PeopleSearchSource

public override nfloat GetHeightForRow(UITableView tableView, Foundation.NSIndexPath indexPath) 
      { 
       return 150; 
      } 
      public override nint RowsInSection(UITableView tableview, nint section) 
      { 
       if(peopleHomeController.isSearch) 
       { 
        return peopleHomeController.peopleList.Count; 
       } 
       else 
       { 
        return peopleHomeController.relatedPeopleList.Count; 

       } 

      } 

      public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath) 
      { 
       cell = peopleHomeController.tablePeopleSearch.DequeueReusableCell("people_search_cell") as PeopleSearchCell; 


       if(peopleHomeController.isSearch) 
       { 
        var data = peopleHomeController.peopleList.ElementAt(indexPath.Row); 
        cell.UpdateCell(data); 
       } 
       else 
       { 
        var data = peopleHomeController.relatedPeopleList.ElementAt(indexPath.Row); 
        cell.UpdateCell(data); 
       } 


       return cell; 
      } 
+0

你可以了解目标C代码? – KKRocks

+0

@KKRocks是的,我可以:) – user3034944

+0

利用枚举并相应地操作数据源。 –

回答

0

您需要在搜索栏委托管理的标志。

搜索栏委托

- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar{ 
    searchBar.text = @""; 
    isSearch = NO ; 
    [arrFilter removeAllObjects]; 
    [searchTblView reloadData]; 
    [searchBar resignFirstResponder]; 
} 

-(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar{ 
    NSLog(@"search text :%@",searchBar.text); 
    NSCharacterSet *whitespace = [NSCharacterSet whitespaceAndNewlineCharacterSet]; 
    NSString *strSearch = [searchBar.text stringByTrimmingCharactersInSet:whitespace]; 
    isSearch = YES; 
    if ([strSearch isEqualToString:@""]) { 
     isSearch = NO; 
    } 
    // call api here and reload tableview 
} 

的TableView委托

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ 
    if (isSearch) { 
     return arrFilter.count;; 
    } 
    return arrMain.count; 
} 

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ 

    NSString *identifier = @"searchCell"; 
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; 

    NSString *strname = [isSearch ? arrFilter :arrMain objectAtIndex:indexPath.row ]; // change your array here 
    UILabel *lblRecipeName = (UILabel *)[cell viewWithTag:101]; 
    lblRecipeName.text = strname; 

    return cell; 
} 
+0

感谢您的答复。我应该只使用UISearchView而不使用带显示控制器的UISearchView? – user3034944

+0

它只是搜索视图。 – KKRocks

+0

我试过这个解决方案。但不知何故我的GetCell()/ cellForRowAtIndexPath没有被调用。 numberOfRowsInSection()被调用,虽然 – user3034944