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

前端 未结 6 1048
生来不讨喜
生来不讨喜 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:48

    In my case, I had repositioned the searchbar to the top of the screen, and there was an invisible view which is overlapped over the searchbar.

    Thus cancel button was not touched actually.

    So, I have brought the seachbar front when [searchBarTextDidBeginEditing] method was called like below.

    -(void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar{
        lc_SearchBarYPos.constant = 20.0f; //this is code to reposition the searchbar
        [self.view bringSubviewToFront:searchBar];
    }
    

    Hope this may help.

提交回复
热议问题