2010-04-13 7 views
0

J'essaie de créer un UISearchBar personnalisé. Je ne suis pas capable de trouver toutes les méthodes possibles en utilisant la documentation. Est-il possible de trouver toutes les méthodes disponibles?comment trouver toutes les méthodes disponibles dans UISearchBar

+0

Cela ne suffit pas? http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UISearchBar_Class/Reference/Reference.html – Alex

Répondre

1

Créer l » objet UISearchBar comme

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

projet -> navigateur de classe dans xcode résolu mon problème. Merci :). – thndrkiss

+0

C'est une information utile Merci ... –

Questions connexes