背景
话说如果项目越来越复杂,页面随之也会变得复杂,最终导致的就是性能优化问题。性能优化方面也是比较多的,我们通过研究VVeboTableView
这个项目的优化点进而学习优化思路。
其实项目优化最终仅仅就是一个目的,页面流畅度达到60FPS,这个项目通过优化甚至在低端机都表现良好,接下来就让我们深入探究一下它是如何做到的。
不过关于优化一般都是不要过早的大方面优化,最好是项目稳定之后,具体针对某一具体的复杂没有达到60FPS的页面进行优化。
探究之路
滑动过程中不加载视图
首先是VVeboTableView
实现了UIScrollViewDelegate的几个方法
,这些方法中最关键的就是- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
这个方法,在我们抬手的那一刻,通过此时手指的位置计算出当前页面需要加载的所有UITableViewCell
。屏幕外上下各加3个。
1 | - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{ |
紧接着我们来看UITableView加载cell的方法,在此方法中是调用了[self drawCell:cell withIndexPath:indexPath]
此方法,此方法实现如下:1
2
3
4
5
6
7
8
9
10
11
12
13
14- (void)drawCell:(VVeboTableViewCell *)cell withIndexPath:(NSIndexPath *)indexPath{
NSDictionary *data = [datas objectAtIndex:indexPath.row];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
[cell clear];
cell.data = data;
if (needLoadArr.count>0&&[needLoadArr indexOfObject:indexPath]==NSNotFound) {
[cell clear];
return;
}
if (scrollToToping) {
return;
}
[cell draw];
}
此方法中通过判断是否需要绘制cell,如果不需要会返回空白。所以在滑动的过程中我们会看到一些空白页面
减少视图的层级和数量
1 | //将主要内容绘制到图片上 |
通过以上代码我们可以看出,将主要的内容比如名字、评论图标和数量、转发图标和数量等一些内容全部绘制到了一张图片上,然后设置到了UIImageView
上
通过异步绘制视图,主线程进行设置
上边的代码我们看到在绘制的过程中是在全局并发队列中进行的,并且最终回到了主线程进行设置,而且这也是必须要这样做的1
2
3
4
5
6
7
8
9
10
11
12dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
...
dispatch_async(dispatch_get_main_queue(), ^{
if (flag==drawColorFlag) {
postBGView.frame = rect;
postBGView.image = nil;
postBGView.image = temp;
}
});
}
[self drawText];
[self loadThumb];
接下来让我看一下[self drawText]
方法的实现。1
2
3
4
5
6
7
8
9
10
11
12- (void)drawText{
if (label==nil||detailLabel==nil) {
[self addLabel];
}
label.frame = [_data[@"textRect"] CGRectValue];
[label setText:_data[@"text"]];
if ([_data valueForKey:@"subData"]) {
detailLabel.frame = [[_data valueForKey:@"subData"][@"textRect"] CGRectValue];
[detailLabel setText:[_data valueForKey:@"subData"][@"text"]];
detailLabel.hidden = NO;
}
}
这个方法自定了一个Label,在setText
方法中同样是异步绘制内容,并且底层实现是使用CoreText
性能方面也是比较优越
下边的代码我稍微做了精简1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82- (void)setText:(NSString *)text{
....
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSString *temp = text;
_text = text;
CGSize size = self.frame.size;
size.height += 10;
UIGraphicsBeginImageContextWithOptions(size, ![self.backgroundColor isEqual:[UIColor clearColor]], 0);
CGContextRef context = UIGraphicsGetCurrentContext();
if (context==NULL) {
return;
}
if (![self.backgroundColor isEqual:[UIColor clearColor]]) {
[self.backgroundColor set];
CGContextFillRect(context, CGRectMake(0, 0, size.width, size.height));
}
CGContextSetTextMatrix(context,CGAffineTransformIdentity);
CGContextTranslateCTM(context,0,size.height);
CGContextScaleCTM(context,1.0,-1.0);
//Determine default text color
UIColor* textColor = self.textColor;
//Set line height, font, color and break mode
CGFloat minimumLineHeight = self.font.pointSize,maximumLineHeight = minimumLineHeight, linespace = self.lineSpace;
CTFontRef font = CTFontCreateWithName((__bridge CFStringRef)self.font.fontName, self.font.pointSize,NULL);
CTLineBreakMode lineBreakMode = kCTLineBreakByWordWrapping;
CTTextAlignment alignment = CTTextAlignmentFromUITextAlignment(self.textAlignment);
//Apply paragraph settings
CTParagraphStyleRef style = CTParagraphStyleCreate((CTParagraphStyleSetting[6]){
{kCTParagraphStyleSpecifierAlignment, sizeof(alignment), &alignment},
{kCTParagraphStyleSpecifierMinimumLineHeight,sizeof(minimumLineHeight),&minimumLineHeight},
{kCTParagraphStyleSpecifierMaximumLineHeight,sizeof(maximumLineHeight),&maximumLineHeight},
{kCTParagraphStyleSpecifierMaximumLineSpacing, sizeof(linespace), &linespace},
{kCTParagraphStyleSpecifierMinimumLineSpacing, sizeof(linespace), &linespace},
{kCTParagraphStyleSpecifierLineBreakMode,sizeof(CTLineBreakMode),&lineBreakMode}
},6);
NSDictionary* attributes = [NSDictionary dictionaryWithObjectsAndKeys:(__bridge id)font,(NSString*)kCTFontAttributeName,
textColor.CGColor,kCTForegroundColorAttributeName,
style,kCTParagraphStyleAttributeName,
nil];
//Create attributed string, with applied syntax highlighting
NSMutableAttributedString *attributedStr = [[NSMutableAttributedString alloc] initWithString:text attributes:attributes];
CFAttributedStringRef attributedString = (__bridge CFAttributedStringRef)[self highlightText:attributedStr];
//Draw the frame
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attributedString);
CGRect rect = CGRectMake(0, 5,(size.width),(size.height-5));
if ([temp isEqualToString:text]) {
[self drawFramesetter:framesetter attributedString:attributedStr textRange:CFRangeMake(0, text.length) inRect:rect context:context];
CGContextSetTextMatrix(context,CGAffineTransformIdentity);
CGContextTranslateCTM(context,0,size.height);
CGContextScaleCTM(context,1.0,-1.0);
UIImage *screenShotimage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
dispatch_async(dispatch_get_main_queue(), ^{
CFRelease(font);
CFRelease(framesetter);
CFRelease(style);
[[attributedStr mutableString] setString:@""];
if (drawFlag==flag) {
if (isHighlight) {
....
} else {
if ([temp isEqualToString:text]) {
...
highlightImageView.image = nil;
labelImageView.image = nil;
labelImageView.image = screenShotimage;
}
}
// [self debugDraw];//绘制可触摸区域
}
});
}
});
}
这个实现与- (void)drawInContext:(CGContextRef)context withPosition:(CGPoint)p andFont:(UIFont *)font andTextColor:(UIColor *)color andHeight:(float)height
这个方法的实现很相似
接下来就是[self loadThumb];
这个方法这个方法其实关键就是应用了SDWebimage
加载图片,因为此框架在加载图片已经帮我优化了。(异步解压图片,并且将图片绘制到画布上,从而不会使解压数据在内存中驻留)
总结
作者通过以上三点确实做到了性能极大的提高。不过我在研究的过程中遇到了两个bug:
- 代码中有内存泄漏,主要是由于有一处
CTParagraphStyleRef style
这个对象没有释放 - 当我单手使劲向上滑动,界面停下的时候页面不会加载数据。其实就是由于监听了
- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset
在这个方法导致的
在以上三个优化点的基础上其实我们还可以做一个比较明显的优化就是将绘制结果用NSCache
缓存起来,没必要每次都进行绘制。加上这个性能会有更大的提升
加上最后一点总共四点,除了第一点有的项目不会接受外,其他三点和SDWebimage
的优化方式只要我们在项目适当的使用,基本上能够解决很大一部分的性能问题的