0

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

4

1 回答 1

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...
于 2010-04-13T05:58:27.003 回答