Skip to content

Instantly share code, notes, and snippets.

@pratikshabhisikar
Created December 26, 2011 17:37
Show Gist options
  • Save pratikshabhisikar/1521695 to your computer and use it in GitHub Desktop.
Save pratikshabhisikar/1521695 to your computer and use it in GitHub Desktop.
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar{
[pc2macSearchBar setShowsCancelButton:YES animated:YES];
}
- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar{
[pc2macSearchBar resignFirstResponder];
[pc2macSearchBar setShowsCancelButton:NO animated:YES];
}
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar{
[self searchPc2Mac:searchBar.text];
[pc2macSearchBar resignFirstResponder];
[pc2macSearchBar setShowsCancelButton:NO animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment