如何找到UISearchBar中可用的所有方法

时间:2010-04-13 05:50:02

标签: iphone iphone-sdk-3.0 uisearchbar

我正在尝试创建一个自定义的UISearchBar。我无法使用文档找到所有可能的方法。有没有办法找到所有可用的方法?。

1 个答案:

答案 0 :(得分:1)

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