Search code examples
iosobjective-cxcodeios5uisearchbar

Disable UISearchBar


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!


Solution

  • Have you tried:

    [searchBar setUserInteractionEnabled:NO];
    

    ?