UISearchBar's Cancel and Clear Buttons Not Working in iOS 7

前端 未结 6 1058
生来不讨喜
生来不讨喜 2020-12-07 02:09

I have an xCode project that contains a tableview with a “Search Bar and Search Display Controller” to allow the user to refine the list of displayed items. In general, the

6条回答
  •  无人及你
    2020-12-07 02:37

    I have the same problem, I tried with the following code. Please try this one.

    -(void)searchDisplayControllerDidBeginSearch:(UISearchDisplayController *)controller
    {
        controller.active = YES;
    
        [self.view addSubview:controller.searchBar];
        [self.view bringSubviewToFront:controller.searchBar];
    }
    
    - (void)searchDisplayController:(UISearchDisplayController *)controller didShowSearchResultsTableView:(UITableView *)tableView  {
    
        tableView.frame = self.archiveListTblView.frame;
    }
    
    - (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller
    {
        controller.active=NO;
    
        [self.view addSubview:controller.searchBar];
    }
    

提交回复
热议问题