我有一个自定义的UITableView单元,它可以显示图像和标题。我使用了来自atebits的ABTableViewCell的快速滚动示例。
似乎当我选择第一行(这是我的行具有最大图像)时,需要花费相当多的时间来突出显示该行,然后推送新的视图控制器。
然而,当我选择任何其他行时,图像要小得多,几乎是即时的。
我曾尝试使用CGContextDrawImage和drawInRect绘制图片,但两者都会产生相同的结果。
- (void)drawContentView:(CGRect)r highlighted:(BOOL)highlighted {
if ([type isEqualToString:@"first"]) {
CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *backgroundColor = [UIColor blackColor];
UIColor *textColor = [UIColor whiteColor];
UIColor *textBackgroundColor = [[UIColor alloc] initWithWhite:0 alpha:.5];
UIColor *highlightColor;
if (highlighted) {
backgroundColor = [UIColor clearColor];
textColor = [UIColor blueColor];
highlightColor = [[UIColor alloc] initWithWhite:0 alpha:.3];
} else {
highlightColor = [UIColor clearColor];
}
[backgroundColor set];
CGContextFillRect(context, r);
[self.picture drawInRect:CGRectMake(0.0, 0.0, 320, 225)];
[textBackgroundColor set];
CGContextFillRect(context, CGRectMake(0, 170, 320, 55));
[textColor set];
[self.title drawInRect:CGRectMake(5, 170, 320, 55) withFont:firstHeadlineFont lineBreakMode:UILineBreakModeWordWrap];
[highlightColor set];
CGContextFillRect(context, r);
} else {
CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *backgroundColor = [UIColor blackColor];
UIColor *textColor = [UIColor blueColor];
if (highlighted) {
backgroundColor = [UIColor clearColor];
textColor = [UIColor whiteColor];
}
[backgroundColor set];
CGContextFillRect(context, r);
CGPoint p;
p.x = 0;
p.y = 0;
[self.picture drawInRect:CGRectMake(0.0, 0.0, 44, 44)];
[textColor set];
p.x += 44 + 6; // space between words
[self.title drawAtPoint:p withFont:[UIFont systemFontOfSize:20]];
}
}
编辑: 有什么办法可以加快速度吗?我正在缓存图像并阅读它。
答案 0 :(得分:0)
我意识到我在第一行使用了非常大的图像版本,在将其从网络服务器中取出之前我能够将其缩小,这大大提高了性能。注意:仔细检查您的尺寸不是很大。 IE:2184x1456哈哈