标签:
UITableView是iOS中使用最频繁的视图。
一、UITableView的组成部分
1、UITableView初始化
UITableView有两个协议:
1)dataSource是UITableViewDataSource类型,主要为UITableView提供显示用的 数据(UITableViewCell),指定UITableViewCell支持的编辑操作类型 (insert,delete和 reordering),并根据用户的操作进行相应的数据更新操作,如果数据没有更具操作进行正确的更新,可能会导致显示异常,甚至crush。
2)delegate是UITableViewDelegate类型,主要提供一些可选的方法,用来控制tableView的选择、指定section的头和尾的显示以及协助完成cell的删除和排序等功 能。
UITableView有两种风格:
1)Plain,主要用于动态表,而动态表一般在单元格数目未知的情况下使用。
2)Grouped,用于静态表,可以将cell分成一组一组的。
UITableView只能有一列数据,只能支持纵向滑动。
1 //根据frame和style来创建tableView 2 UITableView * tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) style:UITableViewStylePlain]; 3 tableView.delegate = self; 4 tableView.dataSource = self; 5 self.table = tableView; 6 [self.view addSubview:tableView];
2、表头视图
表头视图是UITableView最上边的视图,经常用于展示表视图的信息,也用于展示图片,轮播图等。
我们需要用到@property(nonatomic, retain) UIView *tableHeaderView;这个属性。
1 //初始化头部视图 2 UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 100)]; 3 view.backgroundColor = [UIColor redColor]; 4 self.table.tableHeaderView = view;
3、表脚视图
表脚视图是UITableView最下边的视图,用于展示表视图的信息,一般用来显示“更多”等信息,或确定按钮等一些特殊的操作。
我们需要用到属性@property(nonatomic, retain) UIView *tableFooterView属性。
1 //初始化表脚视图 2 UIView * footView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 80)]; 3 footView.backgroundColor = [UIColor blueColor]; 4 self.table.tableFooterView = footView;
未完待续。。。。。。。
标签:
原文地址:http://www.cnblogs.com/sjzlovecj/p/4771911.html