1

我有一个UITableView和一个UITableCell子类。每个表格单元格都有两个scrollviews,每个都旋转动态数量的标签,这些标签是在我的表格单元格实现中创建的。我的滚动性能很差,我相信这是由于内存泄漏造成的。我引用这个stackoverflow correct answer to fix my problemcellForRowAtIndexPath 内存管理

我不知道如何调整我的代码,所以我不必每次创建标签时都分配内存。

视图控制器.m

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Custom Cell";

cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}


NSDictionary *dictionary = [parseDataArray objectAtIndex: indexPath.row];

NSArray *popularLinkTitleArray = [dictionary objectForKey:@"popularLinkTitleArray"];
NSString *soundCloudLink = [dictionary objectForKey:@"soundCloudLink"];
NSArray *soundCloudTrackTitleArray = [dictionary objectForKey:@"soundCloudTrackTitleArray"];


cell.artistNameLabel.text = artistName;

[cell createPopularLinkLabels: popularLinkTitleArray];

return cell;
}

CustomCell.m

- (void)layoutScrollLabelsForPopularLinkScrollView: (float)arrayCount
{
UIView *view = nil;
NSArray *subviews = [popularLinkScrollView subviews];

// reposition all image subviews in a horizontal serial fashion
CGFloat curXLoc = 0;
for (view in subviews)
{
    if ([view isKindOfClass:[UILabel class]] && view.tag >= 0)
    {
        CGRect frame = view.frame;
        frame.origin = CGPointMake(curXLoc, 0);
        view.frame = frame;

        curXLoc += (kScrollObjWidth);
    }
}

[popularLinkScrollView setContentSize:CGSizeMake((arrayCount * kScrollObjWidth),    [popularLinkScrollView bounds].size.height)];

}

-(void) createPopularLinkLabels:(NSArray *) popularLinkTitleArray
{

popularLinkScrollView.clipsToBounds = YES;

kScrollObjHeight = popularLinkScrollView.frame.size.height;
kScrollObjWidth = popularLinkScrollView.frame.size.width;

for (UIView* subView in popularLinkScrollView.subviews)
    [subView removeFromSuperview];

NSUInteger i;
    for (i = 0; i < popularLinkTitleArray.count; i++)
    {
        NSString *string = [NSString stringWithFormat:@"%@", [popularLinkTitleArray objectAtIndex: i]];
        UILabel *label = [[UILabel alloc] init];
        label.text = [NSString stringWithFormat:@"%@", string];
        label.backgroundColor = [UIColor clearColor];
        label.numberOfLines = 5;
        [label setFont:[UIFont fontWithName:@"Calibri" size:18]];

        // setup each frame to a default height and width, it will be properly placed when we call "updateScrollList"
        CGRect rect = label.frame;
        rect.size.height = kScrollObjHeight;
        rect.size.width = kScrollObjWidth;
        label.frame = rect;
        label.tag = i;  // tag our images for later use when we place them in serial fashion
        [popularLinkScrollView addSubview:label];
    }

[self layoutScrollLabelsForPopularLinkScrollView:popularLinkTitleArray.count];

}
4

2 回答 2

2

你在用ARC吗?如果没有,你应该自动释放到

cell = [[[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]

单元格对象被重复使用,您无需在每次更改内容时重新添加子视图。如果需要,只需更改数据并更新标签框架。

如果您有明显不同的单元格,请考虑使用单独的自定义单元格类。您需要为重用标识符使用单独的值。

还可以考虑不创建自定义单元格,而只是将元素添加到标准 UITableViewCell。 阅读有关设置单元格样式的内容

于 2012-05-19T22:17:05.293 回答
0

您可以做的第一件事是尝试在 createPopularLinkLabels 中重用 UILabel。现在,您只是在添加更多之前删除它们。

但是,如果所有单元格中流行链接的数量不同,那么您将不得不删除剩余的链接或隐藏它们,并且无法避免内存分配。

更好的解决方案是在滚动视图中插入自定义 UIView 并手动绘制所有文本,而不是创建大量子视图。

希望这会有所帮助,托马斯

于 2012-05-19T22:16:51.410 回答