0

这是我的 cellForRowAtIndexPath 方法。在我的项目中使用 ARC。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {

    static NSString* cellIdentifier = @"ActivityCell";



    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if (!cell) {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];

    }



    Activity* activityToShow = [self.allActivities objectAtIndex:indexPath.row];



    //Cell and cell text attributes

    cell.textLabel.text = [activityToShow name];


    //Slowing down the list scroll, I guess...

    LastWeekView* lastWeekView = [[LastWeekView alloc] initWithFrame:CGRectMake(10, 39, 120, 20)];

    [lastWeekView setActivity:activityToShow];

    lastWeekView.backgroundColor = [UIColor clearColor];

    [cell.contentView addSubview:lastWeekView];



     return cell;

}

我猜 LastWeelView 分配正在减慢滚动速度。在 lastWeekView 中,我从 CoreData 获取实体的关系,对这些值执行计算并在其 drawRect 方法中绘制一些颜色。

这是 LastWeekView 的 drawRect

- (void)drawRect:(CGRect)rect
{
    NSArray* activityChain = self.activity.computeChain; //fetches its relationships data


    for (id item in activityChain) {
        if (marking == [NSNull null]) 
        {
            [notmarkedColor set];
        }
        else if([(NSNumber*)marking boolValue] == YES)
        {
            [doneColor set];
        }
        else if([(NSNumber*)marking boolValue] == NO)
        {
            [notdoneColor set];
        }

        rectToFill = CGRectMake(x, y, 10, 10);
        CGContextFillEllipseInRect(context, rectToFill);

        x = x + dx;
    }
}

我该怎么做才能平滑tableView的滚动?如果我必须将此 lastWeekView 异步添加到每个单元格的 contentView,我该怎么做?请帮忙。

4

1 回答 1

1

我建议LastWeekView在单元格的分配范围内进行分配。另外 - 获取所有核心数据对象,viewDidLoad以便 incellForRowAtIndexPath:方法从数组而不是从存储中检索它。它应该看起来像这样:

- (void)viewDidLoad
    ...
    _activities = [Activity fetchAllInContext:managedObjectContext];
    ...
}


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCell];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
        LastWeekView* lastWeekView = [[LastWeekView alloc] initWithFrame:CGRectMake(10, 39, 120, 20)];

        lastWeekView.backgroundColor = [UIColor clearColor];

        [cell.contentView addSubview:lastWeekView];
    }

    Activity *activityToShow = [_activities objectAtIndex:[indexPath row]];
    LastWeekView *lastWeekView = (LastWeekView *)[[[cell contentView] subviews] lastObject];
    [lastWeekView setActivity:activityToShow];
    return cell;
}

请注意,您还可以将 UITableViewCell 子类化以将 contentView 替换为您的 LastWeekView以快速访问活动属性。

于 2012-08-27T08:38:30.060 回答