开发者

UISearchDisplayController and table

开发者 https://www.devze.com 2023-01-30 10:11 出处:网络
when I开发者_StackOverflow中文版 add a UISearchDisplayController from interface build, it comes with a search bar. what about the results table? do I need to add a UITableView myself, or is that alrea

when I开发者_StackOverflow中文版 add a UISearchDisplayController from interface build, it comes with a search bar. what about the results table? do I need to add a UITableView myself, or is that already included?

which delegate methods do I need to use?


Yes you will need to add a UITableView.

Also ensure your view controller has the appropriate UITableView delegate functions/methods (numberOfSectionsInTableView, cellForRowAtIndexPath and etc)

In addition look into implementing the UISearchDisplayDelegate and UISearchBarDelegate for your search bar.

UISearchDisplayDelegate documentation UISearchBarDelegate documentation

0

精彩评论

暂无评论...
验证码 换一张
取 消