码迷,mamicode.com
首页 > 其他好文 > 详细

UISearchDisplayController 使用

时间:2014-05-23 23:52:19      阅读:430      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

bubuko.com,布布扣
1.首先定义属性
@property (nonatomic, retain) UISearchDisplayController *searchDisplayController;
2.创建一个UISearchBar
UISearchBar *search = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 40)];
    [search setPlaceholder:@"搜索"];
    [search setAutocapitalizationType:UITextAutocapitalizationTypeNone];
    [search setAutocorrectionType:UITextAutocorrectionTypeNo];
3.将UISearchBar加入UITableHeaderView
self.tableView.tableHeaderView = search;
4.最后将UISearchBar加入UiSearchDisplaycontroller
self.searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:search contentsController:self];
5.设置代理
self.searchDisplayController.delegate = self;
self.searchDisplayController.searchResultsDataSource = self;
self.searchDisplayController.searchResultsDelegate = self;
bubuko.com,布布扣

注:需配合UINavgationController一起使用

UISearchDisplayController 使用,布布扣,bubuko.com

UISearchDisplayController 使用

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/M2Lan/p/3736993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!