views:

49

answers:

1

Hi,

I am trying to create a customized UISearchBar. I am not able to find all possible methods using documentation. Is there way to find all the available methods ?.

+1  A: 

Create UISearchBar 's object like

UISearchBar *mySearchBar;
        mySearchBar = [[UISearchBar alloc] init];
        [mySearchBar //Hit Escape Button here you will get all the possible methods of UIsearchBar and its Super class that it can call...
mihirpmehta
project -> class browser in xcode solved my problem. Thanks :).
thndrkiss
It's Useful Information Thanks...
mihirpmehta