0

我在UITableView我的表格视图中添加了一个搜索栏时遇到了问题。搜索栏正在工作。表格也正常工作。但是当我使用该搜索栏搜索某些内容时,我无法单击任何表(没有调用 didselect 方法)。这是什么原因。谁能帮我解决这个问题?

.h 类

@interface HomeViewController : UIViewController<UITabBarDelegate,UITableViewDataSource,UITableViewDelegate,FPPopoverControllerDelegate,AVAudioPlayerDelegate,UISearchBarDelegate>

`

.m 查看didload

`

searchbarAllusers.delegate=(id)self;

searchbarAllusers.showsCancelButton = YES;

`

搜索方法`

-(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
    if (searchBar.text.length==0) {
        isSearch=NO;
    }

    else
    {
        isSearch=YES;
        if (searchBar.tag==1) {
            [self filterListForSearchText:searchBar.text :@"USR"];
        }

        else if (searchBar.tag==2)
        {
            [self filterListForSearchText:searchBar.text :@"ARTIST"];
        }

        [searchBar resignFirstResponder];
    }
}


-(void)searchBarCancelButtonClicked:(UISearchBar *)searchBar2
{


    [searchBar2 resignFirstResponder];
    isSearch=NO;

        if (searchBar2.tag==1) {

        [tblAddFriends reloadData];
    }

    else if (searchBar2.tag==2)
    {

        arrArtistList=artistTemparray;
        [tblArtists reloadData];
    }


}

`

在应用程序开始时,所有表格都正常工作,包括点击事件。但是一旦我搜索了一些东西,表就会被锁定(不调用 didselect 方法)

请帮我

谢谢

4

0 回答 0