gpt4 book ai didi

iphone - 测量 UITableView 滚动性能 - iphone

转载 作者:太空狗 更新时间:2023-10-30 03:23:45 25 4
gpt4 key购买 nike

我正在尝试测量我的 UITableView 在使用 subview 和自己绘制 View 之间的滚动性能。我们可能知道滚动性能,有几篇著名文章( TweetieTableViewSuiteGlassyGlassy2 帮助我们使用该技术,所有文章都指向同一点:当我们有很多对于 subview ,我们应该使用 drawRect。

问题是我不知道如何对两种情况下的性能进行基准测试:使用 subview 或绘图。而且绘图其实比 subview 更难做,所以很难说服大家直接去绘图。我正在尝试编写 2 个小样本并使用 2 种技术并对性能结果进行基准测试。我目前正在尝试使用此方法,但这两种技术都会产生相同的结果:

NSDate *date = [NSDate date];
static NSString *CellIdentifier = @"CellIdentifier";

CustomDrawingTableViewCell *cell = (CustomDrawingTableViewCell *) [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[CustomDrawingTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier] autorelease];
}

// Configure the cell...
// Main Code is HERE


NSDate *date2 = [NSDate date];
NSLog(@"%f", [date2 timeIntervalSinceDate:date]);
return cell;

我的手机有大约 4 张图片,1 条文字

最佳答案

我建议使用 Instruments 而不是尝试直接在您的代码中运行测试。 Core Animation 工具将跟踪您的应用显示的实际每秒帧数 (FPS)。

关于iphone - 测量 UITableView 滚动性能 - iphone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5459708/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com