码迷,mamicode.com
首页 >  
搜索关键字:uisearchcontroller    ( 46个结果
iOS8 UISearchViewController搜索功能讲解
在iOS8以前我们实现搜索功能需要用到UISearchbar和UISearchDisplayController, 在iOS8之后呢, UISearchController配合UITableView的使用相比之下简单很多,  需要签订两个代理协议UISearchControllerDelegate, UISearchResultsUpdating.还有一个很重要的属性self.searchVC.a...
分类:移动开发   时间:2015-05-15 10:51:04    阅读次数:256
iOS UISearchController的使用
- (void)viewWillAppear:(BOOL)animated{     [super viewWillAppear:animated];     [self setTabBarHidden:YES withAnimation:YES]; } - (void)viewWillDisappear:(BOOL)animated{     [super viewWillDisapp...
分类:移动开发   时间:2015-05-04 15:38:30    阅读次数:150
iOS-UISearchBar和UISearchController(参考网友来练习一下)
#import "ViewController.h"#import "TestCell.h"@interface ViewController (){ NSMutableArray *dataArray; NSMutableArray *searchArray; UISearchC...
分类:移动开发   时间:2015-02-06 11:10:46    阅读次数:181
iOS开发-搜索栏UISearchBar和UISearchController
搜索栏的重要性我们就不说了,狼厂就是靠搜索起家的,现在越来越像一匹没有节操的狼,UC浏览器搜索栏现在默认自家的神马搜索,现在不管是社交,O2O还是在线教育等都会有一个搜索栏的实现,不过彼此实现效果是不一样的。iOS中的搜索栏实现起来相对简单一点,网上也有很多参考资料,不过靠谱的不是很多,很多都是iO...
分类:移动开发   时间:2015-02-05 08:17:19    阅读次数:309
【学习ios之路:UI系列】(UISearchBar,UISearchDisplayController) 和UISearchController(iOS8新特性)
1.UISearchBar(效果如下:) ①创建UISearchBar对象 //初始化,定义frame UISearchBar *bar = [[UISearchBar alloc] initWithFrame:CGRectMake (0, 50, self.view.fra...
分类:移动开发   时间:2015-02-01 16:10:59    阅读次数:300
UISearchController 基础使用
在最近的学习中,需要用到搜索框UISearchController,但是在网上或者教材上没有看到相关资料,只有UISearchDisplayController这个被弃用的控件,于是自己琢磨了下弄出来了。我想实现的功能是这样的,在主视图中有一个UISearchBar,当这个UISearchBar获得...
分类:其他好文   时间:2015-01-25 12:25:34    阅读次数:728
46条   上一页 1 ... 3 4 5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!