I have a -as I hope- very simple question: how to disable an UISearchBar in IOS5 to avoid user interaction? I can't find setEnabled or something like this...
Thanks!
Have you tried:
[searchBar setUserInteractionEnabled:NO];
?