iOS7 when UIsearchbar added in UINavigationBar not showing cancel button

前端 未结 7 930
误落风尘
误落风尘 2020-12-03 01:33

I add UISearchBar above UINavigationBar and set UIsearchbar showsCancelButton YES, work fine in iOS6 but in iOS7 not showing cancel button. I used below code snippet

7条回答
  •  臣服心动
    2020-12-03 01:59

    Implement the search bar delegate and use this:

    - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
    {
        searchBar.showsCancelButton = YES;
    }
    

提交回复
热议问题