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

UI基础--UITableView,UITableViewDataSource,UITableViewDelegate的一些属性和方法

时间:2015-01-03 23:47:57      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

UITableView(继承自UIScrollView)的常用属性

1、可以用连线的方式设置数据源和代理

1 self.tableView.dataSource = self;
2 self.tableView.delegate = self;

2、设置高度

1 @property (nonatomic)   CGFloat rowHeight;//行高
2 @property (nonatomic)   CGFloat sectionHeaderHeight; //组头的高度
3 @property (nonatomic) CGFloat sectionFooterHeight; //组尾的高度

3、设置分割线

1 @property(nonatomic) UITableViewCellSeparatorStyle separatorStyle;//分割线样式
2 @property(nonatomic,retain) UIColor;//分割线的颜色

4、设置tableView是否分组(默认在storyboard中已经设置)

1 @property (nonatomic, readonly) UITableViewStyle;//UITableViewStylePlain,    不分组;UITableViewStyleGrouped   分组

5、自定义头和尾部

1 @property(nonatomic,retain) UIView *tableHeaderView;//头部
2 @property(nonatomic,retain) UIView *tableFooterView;//尾部

UITableViewDataSource的常用方法:

1 @required
2 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;// 每一组有多少行数据
3 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;// 每一个cell都包含什么内容(image、textLabel、detailTextLabel,还有一个就是附属物)
4 @optional
5 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; // 一个tableView有多少组的数据 ,默认是1
6 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; - (NSString *)tableView:(UITableView *)tableView //每一组的头标题
7 //titleForFooterInSection:(NSInteger)section;//每一组的尾标题
8 - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView; // 返回右侧导航标题(包含的是每组头标题的数组)

UITableViewDelegate的常用方法:

1 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;//每组数据中的行高
2  - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;//每组数据的组头的高度
3 - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section;//每组数据的组尾的高度
4 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; //每行被选中时的操作

UITableViewCell的重用:

cell的性能优化:当cell滑出屏幕(不用之后),把cell对象存储在特定标示的缓存池,当tableView加载下一个数据的时候,从缓存池中取出空闲的cell:

1 static NSString *reuseIdentifier = @"cell";//设置缓冲池标识
2 UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
3 if (!cell) {
4 cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:reuseIdentifier];//当缓存池里暂时没有空闲的cell时,初始化一个cell
5 }

 


 

 

UI基础--UITableView,UITableViewDataSource,UITableViewDelegate的一些属性和方法

标签:

原文地址:http://www.cnblogs.com/xiaomoge/p/4200140.html

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