7

我在自定义 UITableViewCell 的 drawRect 方法中绘图时遇到问题。这是我正在使用的代码

- (void)drawRect:(CGRect)rect
{
    CGContextRef ctx  = UIGraphicsGetCurrentContext();
    CGPoint origin    = _faceView.frame.origin;
    CGFloat width     = _faceView.frame.size.width;
    CGFloat height    = _faceView.frame.size.height;
    CGFloat border    = 2.0f;


    CGPoint startPt   = CGPointMake(origin.x + width/2, self.frame.size.height);
    CGContextBeginPath(ctx);
    CGContextMoveToPoint(ctx, startPt.x, startPt.y);

    CGPoint basePt    = CGPointMake(startPt.x, origin.y - height - border);
    CGContextAddLineToPoint(ctx, basePt.x, basePt.y);

    CGRect circleRect = CGRectMake(origin.x - border, origin.y - border, width + 2 * border, height + 2 * border);
    CGContextAddEllipseInRect(ctx, circleRect);

    UIColor *color = [UIColor redColor];
    CGContextSetFillColorWithColor(ctx, color.CGColor);
    CGContextSetStrokeColorWithColor(ctx, color.CGColor);
    CGContextSetLineWidth(ctx, 1.0f);

    CGContextDrawPath(ctx, kCGPathFillStroke);
}

我已经调试以确保所有数值都有意义,并且看起来确实如此。无法真正找出为什么屏幕上没有绘制任何内容。

对于它的价值,这也是一个在笔尖中定义的单元格。我正在使用 iOS 7 sdk 进行构建。

有任何想法吗?

坦克

4

4 回答 4

15

尝试将背景颜色属性设置为透明色

self.backgroundColor = [UIColor clearColor]
于 2013-09-26T12:25:13.760 回答
10

你可能不应该在 UITableViewCell 自己的 drawRect 中这样做。相反,创建一个自定义 UIView 并将其添加为子视图。

另请参阅此答案

于 2013-09-18T23:42:28.170 回答
3

你必须设置

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
       .....
       [cell setNeedsDisplay];
       return cell;
}
于 2014-10-16T08:22:15.733 回答
-2

尝试设置属性backgroundColorcontentView清除颜色

self.contentView = [UIColor clearColor];
于 2016-08-19T03:03:16.780 回答