UICollectionViewCell drawRect:问题

时间:2014-02-11 21:53:14

标签: iphone objective-c drawrect uicollectionviewcell

我需要在某些UICollectionViewCell中绘制一个圆圈。用不同的色的边界和背景颜色盘旋。 我的代码。

UICollectionViewController

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{

    CalendarCell *cell;

    firstDayInMonth = [self dayWeekStart:[self getDateFromItem:dateFromStart section:indexPath.section row:1]];

    if (indexPath.row < firstDayInMonth) {
        cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cellCalendarEmpty" forIndexPath:indexPath];
    } else {
        cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cellCalendar" forIndexPath:indexPath];

    if ([self compareOnlyDate:[self getDateFromItem:dateFromStart section:indexPath.section row:indexPath.item-firstDayInMonth] date2:[self getDateLocaleTimeZone:[NSDate date]]] == 1) {

        cell.bgColor = [UIColor blueColor];
        cell.titleLabel.textColor = [UIColor whiteColor];
        cell.drawCircle = [NSNumber numberWithInt:1];
        toDaySection = indexPath.section;

    } else {

        cell.bgColor = [UIColor whiteColor];
        cell.drawCircle = [NSNumber numberWithInt:0];
        cell.titleLabel.textColor = [UIColor lightGrayColor];
    }

    cell.titleLabel.text = [NSString stringWithFormat:@"%i", indexPath.row-firstDayInMonth+1];

}

return cell;
}

UICollectionViewCell

- (void)drawRect:(CGRect)rect
{

    if ([self.drawCircle integerValue] == 1) {

        [self drawCircl:0.0 end:0.5 color:[UIColor blueColor] bgColor:self.bgColor];
        [self drawCircl:0.5 end:1.0 color:[UIColor redColor] bgColor:self.bgColor];

    }
}

- (void) drawCircl:(float)start end:(float)end color:(UIColor*)color bgColor:(UIColor*)bgColor{

    context = UIGraphicsGetCurrentContext();

    CGContextSetLineWidth(context, 0.8);

    CGFloat startAngle = start * 2 * M_PI - M_PI/2;
    CGFloat endAngle = end * 2 * M_PI - M_PI/2;

    CGContextAddArc(context, 15, 15, 14, startAngle, endAngle, NO);

    CGContextSetFillColorWithColor(context, bgColor.CGColor);
    CGContextSetStrokeColorWithColor(context, color.CGColor);
    CGContextDrawPath(context, kCGPathFillStroke);

}

滚动时,圆圈会在不同的单元格上绘制。 cell.titleLabel始终正确显示。为什么在不应该出现的单元格中绘制圆圈?

1 个答案:

答案 0 :(得分:5)

cell.titleLabel始终正确显示但自定义绘图不正确的原因是因为您每次更新cell.titleLabel但是您自定义绘图设置的方式,它只会影响新创建的单元格。

这是因为在正常情况下,drawRect:通常在视图首次添加到屏幕并显示时触发。您正在重复使用单元格,从而导致绘图保留在视图上,即使它们被用于其他位置。

更改[cell setNeedsDisplay]值后,您需要添加cell.drawCircle。这将导致再次触发单元格的drawRect:方法。