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

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

    I have had this problem too. Strangely other delegate methods of UISearchBarDelegate are being called. A workaround might be:

    - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText{
        if ([searchText length] == 0) {
            NSLog("No Text");
        }
    }
    

    It worked for me

提交回复
热议问题