как найти все методы, доступные в UISearchBar - PullRequest
0 голосов
/ 13 апреля 2010

Я пытаюсь создать настроенный UISearchBar. Я не могу найти все возможные методы, используя документацию. Есть ли способ найти все доступные методы?.

1 Ответ

1 голос
/ 13 апреля 2010

Создать объект UISearchBar как

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...
...