UITableview优化
Posted 爱上咖啡的唐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITableview优化相关的知识,希望对你有一定的参考价值。
说明:
- 开始只创建一部分可见的cell(已由Xcode实现)
- 在滚动的时候,先去缓存池中查找可用的cell,如果有,则取出使用
优化的两种方法
- 方法1:在创建cell时先去缓存池找是否有可用的cell
NSString *ID=@"test";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if(cell==nil){
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
}
cell.textLabel.text=[NSString stringWithFormat:@"test%zd",indexPath.row];
- 方法2:注册cell
//在viewDidLoad方法注册cell,注册一次即可
[tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:ID];
//注册之后效果同方法1
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
cell.textLabel.text=[NSString stringWithFormat:@"test%zd",indexPath.row];
以上是关于UITableview优化的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向整体加固脱壳 ( DEX 优化流程分析 | DexPrepare.cpp 中 dvmOptimizeDexFile() 方法分析 | /bin/dexopt 源码分析 )(代码片段