I want to hide the Navigation Bar of my page when the user start editing on the searchbar, I also want to show a cancel button.
It is done but my cancel button is not access
Use this code to show/Hide the cancel Button in SearchBar
As user will start the Editing in SearchBar SHow the Cancel Button.
Below methods will only be accessible if you have set the delegate of SearchBar
properly.
-(void) searchBarTextDidBeginEditing:(UISearchBar *)searchBar
{
//This'll Show The cancelButton with Animation
[searchBar setShowsCancelButton:YES animated:YES];
//remaining Code'll go here
}
Hide The CancelButton
as User Click on Cancel Button
- (void)searchBarCancelButtonClicked:(UISearchBar *) searchBar
{
//This'll Hide The cancelButton with Animation
[searchBar setShowsCancelButton:NO animated:YES];
//remaining Code'll go here
}