标签:wow lower cm5 vma weight upm git 多少 default
如果问iOS中最重要的最常用的UI控件是什么,我觉得UITableView当之无愧!似乎所有常规APP都使用到了UITableView。下面就讲一讲UITableView的常用知识和使用原理及性能优化!
UITableView继承于UIScrollview,因此它默认支持垂直滚动(只支持垂直滚动)
UITableView性能极佳,它可以出色的完成我们工作中的很多功能。
UITableView一共有两种样式:UITableViewStylePlain 和 UITableViewStyleGroup
效果分别如图:
UITableViewStylePlain:一种平铺的效果,并且分组组头默认有停靠效果;
UITableViewStyleGroup:一种组间分离的效果,每组之间间距较明显,有明显分组迹象。
说完了UITableView的简介,下面来说说他它是如何展示数据的。
UITableView和数据源的关系如下
数据源方法的调用过程
调用如下方法,查询一共有多少组数据
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; // Default is 1 if not implemented
调用如下方法,查询每一组一共有多少行数据
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
调用如下方法,查询每一行显示什么样的内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
UITableView还有一些其他的数据源方法如下
/**
* 返回组头标题
*/
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
/**
* 返回尾标题
*/
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
···
最简单的返回UITableViewCell的方法如下
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] init];
cell.textLabel.text = [NSString stringWithFormat:@"第 %zd 行",indexPath.row];
return cell;
}
但是实际使用过程中这样是非常耗费性能的,因为当用户滑动UITableView的时候,上面方法会疯狂的调用,疯狂的创建UITableViewCell。
苹果对这种情况做了一些性能优化,UITableViewCell在每次创建的时候只会创建当前UI页面上可见的Cell。当Cell滑动到屏幕外面,当前Cell会被放入到缓存池中,并且可以给Cell设置一个复用标识,当下次使用Cell的时候可以先到缓存池中查找,如果有对应复用标识的Cell就直接拿出来使用,并重新给内容赋值。
所以根据苹果复用Cell的思路我们在调用返回cell的方法思路应该如下:
所以上面方法从提高性能角度考虑,应该重新写为下面这样:
/**
* 什么时候调用:每当有一个cell进入视野范围的时候调用
*/
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 0.创建cell复用标识
static NSString *reuseIdentifier = @"cell";
// 1.根据复用标识在复用池中进行查找
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
// 2.判断如果复用池cell为nil就根据复用标识自己创建
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier];
}
// 3.拿到cell进行数据覆盖
cell.textLabel.text = [NSString stringWithFormat:@"第 %zd 行",indexPath.row];
return cell;
}
我们可以手动给tableview注册对应标识的cell,保证从缓存池中能加载到对应标识的cell。
通过代码注册
// 注册cell
static NSString *reuseIdentifier = @"cell";
[tableview registerClass:[UITableViewCell class] forCellReuseIdentifier:reuseIdentifier];
通过Xib注册
// 注册cell
static NSString *reuseIdentifier = @"cell"; // 标识可以在Xib中创建
[tableview registerNib:[UINib nibWithNibName:@"对应的Xib名称" bundle:nil] forCellReuseIdentifier:reuseIdentifier];
在数据源方法中返回cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1.根据复用标识在复用池中进行查找
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
// 2.拿到cell进行数据覆盖
cell.textLabel.text = [NSString stringWithFormat:@"第 %zd 行",indexPath.row];
return cell;
}
第三种方式是通过UITableViewController在StoryBoard中创建,见下面:5.UITableViewController
有了数据源方法,tableview就可以正常展示数据。有了对应的代理方法就可以正常监听tableview的事件操作。
下面列举一些常用代理方法:
/**
返回行高,可根据不同行返回不同高
@param tableView tableview
@param indexPath 位置
@return 行高
*/
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
/**
返回估计行高,此方法不进行真实计算,课改变Cell计算高度方法的调用顺序,
@param tableView tableview
@param indexPath 位置
@return 行高
*/
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath;
/**
cell的点击事件处理
@param tableView tableview
@param indexPath 位置
*/
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
/**
cell将要被选中 -- 先需取消选中某个cell才能正常选中新的cell
*/
- (nullable NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;
/**
cell将要被取消选中
*/
- (nullable NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath
···
UITableViewController继承自UIViewController。可以方便创建有tableview的控制器
在StoryBoard中创建UITableViewController并加载cell步骤如下:
设置Dynamic Prototypes动态类型的内容,下面数量至少为1
设置cell的复用标识identfier
在代码中直接加载对应cell即可(无需判空/创建)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1.会默认去缓存池中进行查找,如果没有自动去StoryBaord中找
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
// 2.拿到cell进行数据覆盖
cell.textLabel.text = [NSString stringWithFormat:@"第 %zd 行",indexPath.row];
return cell;
}
通过StoryBoard创建Cell更加方便
小结
iOS回顾笔记(07) -- UITableView的使用和性能优化
标签:wow lower cm5 vma weight upm git 多少 default
原文地址:http://www.cnblogs.com/xiaoyouPrince/p/6596032.html