谈到优化 就是指的是内存的优化 ->一般都是指内存占有太多 ->1.视图加载太多;2. 代码重复过多 ;3.多任务同时执行
因为 表视图是我们经常使用的 每一个app都离不开表视图 所以谈到优化 我只说明表视图的内存优化就是最具有代表性的说
Apple在这块的优化水平直接决定了iOS的体验能甩安卓几条街
优化解决方案:
1.使用重用机制
2.懒加载
3.多使用不透明视图 【少使用alpha = 0;少使用clearColor】
4.缓存高度 【优化代码重复过多】
5.善用drawRect(优化减少视图数目) 【UIImageview 一般在公司都是使用Drawrect来画出来的】
6.滑动不加载 【优化多任务同时执行】
//模拟block回调中的reloadData方法 我就延迟来加载可见cell
- (void)viewDidLoad {
[super viewDidLoad];
//我添加延迟是为了先让cell出来我再去给可见cell赋值 【UI现行思想】
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[self loadShowCells];
});
}
#pragma mark 缓存cell高度
//使用策略设计模式将他留下接口封装起来方便调用
-(CGSize)labelAutoSizeWithText:(NSString *)text Font:(NSInteger)font MaxSize:(CGSize)maxSize { //我估计留下一个接口使得外面适配设备屏幕大小
//设置字体属性样式字典
NSDictionary *fontAttributes = @{NSFontAttributeName:[UIFont systemFontOfSize:font],NSBackgroundColorAttributeName:[UIColor redColor]};
//对传进来的文字做限制
return [text boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin| NSStringDrawingUsesFontLeading |NSStringDrawingTruncatesLastVisibleLine attributes:fontAttributes context:nil].size;
}
#pragma mark 滑动不加载方法
-(void)loadShowCells{
NSArray *array = [self.tableView indexPathsForVisibleRows];//拿到可见cell的下标
for (NSIndexPath *indexPath in array) {
//1.获取cell
if ([[self.tableView cellForRowAtIndexPath:indexPath] isKindOfClass:[TBMyTableViewCell class]]) {
TBMyTableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
//2.请求数据 【此时sd加载的是网络下载的】
CellModel *model = _data[indexPath.row];
//因为我展示的时候有的不需要展示图片就不需要请求网络
[cell setImageWithModel:model];
}
}
}
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
[self loadShowCells];
}
-(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{
if (!decelerate) {//这个方法也是必须加上的如果用户直接拖动然而没有使得view滑动 也就是没有减速也应该给用户展示数据
[self loadShowCells];
}
}
#pragma mark UITableViewDelegate
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return _data.count ;//数组中只有8条假数据
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
CellModel *model = _data [indexPath.row];
return [model.cellHeight floatValue] + 20;//我要让他对上面下面都有点距离
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
CellModel *model = _data[indexPath.row];
if (indexPath.row %2 == 0) {
static NSString *imageID = @"Image";
TBMyTableViewCell *imageCell = [tableView dequeueReusableCellWithIdentifier:imageID];
if (!imageCell) {
imageCell = [[NSBundle mainBundle]loadNibNamed:@"TBMyTableViewCell" owner:self options:nil][0];
}
//给iamge赋值
if (model.isLoad) {//只要这样做 才真正利用了sd的三级缓存
//此时是从缓存中提取下载过的图片
[imageCell setImageWithModel:model];
}else{
//必须加上这个else来显示展位图 否则没有拉过的cell显示的是白色框
[imageCell setImageWithModel:nil];
}
return imageCell;
}else{
static NSString *wordID = @"word";
UITableViewCell *wordCell = [tableView dequeueReusableCellWithIdentifier:wordID];
if (!wordCell) {
wordCell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:wordID];
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 300, 0)];
[label setNumberOfLines:0];
[label setTag:123];//方便多次使用 找到他
[label setFont:[UIFont systemFontOfSize:14]];
[wordCell.contentView addSubview:label];
}
//找到label [模仿系统cell避免重用]
UILabel *label = (UILabel *)[wordCell.contentView viewWithTag:123];
//修改label的frame
[label setFrame:CGRectMake(10, 10, 300, [model.cellHeight floatValue])];
//为label赋值
[label setText:model.text];
return wordCell;
}
return nil;
}