随笔分类 -  IOS UI学习

摘要:使用UISearchController 配合UITableView实现搜索功能 1 #import "ViewController12.h" 2 3 @interface ViewController12 () 4 5 @end 6 7 @implementation Vie... 阅读全文
posted @ 2015-09-17 20:19 cccccy 阅读(187) 评论(0) 推荐(0)
摘要:1. UISwitch 开关 1 - (void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 self.view.backgroundColor = [UIColor whiteColor]; 5 self.title = @"开关"; ... 阅读全文
posted @ 2015-09-17 19:48 cccccy 阅读(227) 评论(0) 推荐(0)
摘要:UICollectionView概述 集合视图UICollectionView类似于UITableView,都是通过继承UIScrollView,实现管理单元格(cell)。相比UITableView,它对 cell 的管理更加灵活。UICollectionViewLayout 是用来管理集合视图 ... 阅读全文
posted @ 2015-09-16 19:55 cccccy 阅读(211) 评论(0) 推荐(0)
摘要:UISearchBar继承自UIView、UIResponder、NSObjectUISearchBar属性设置code: 1 -(void)createSearchBar 2 { 3 _searchBar = [[UISearchBar alloc] initWithFrame:CGRec... 阅读全文
posted @ 2015-09-14 10:47 cccccy 阅读(145) 评论(0) 推荐(0)