UITableViewCells 尝试绘制的上下文无效

发布于 2024-10-30 07:24:17 字数 738 浏览 0 评论 0原文

我正在尝试在 UITableViewCell 中绘制一个复选框三角形。 在数据源协议方法 -tableView:cellForRowAtIndexPath: 中,我在代码块中添加了以下内容,询问单元格是否为零:

    CGContextRef context = UIGraphicsGetCurrentContext(); 
    CGContextBeginPath(context);
    CGContextMoveToPoint(context, 75,10);
    CGContextAddLineToPoint(context, 10, 150);
    CGContextAddLineToPoint(context, 160, 150);
    CGContextClosePath(context);
    [[UIColor blackColor] setStroke];
    CGContextStrokePath(context);

执行代码时,我在以下方法上收到一系列“无效上下文 0x0”消息: CGContextBeginPath: CGContextMoveToPoint: CGContextAddLineToPoint:(两次) CGContext关闭路径: CGContextSetStrokeColorWithColor: CGContextDrawPath

这些消息对表中的每个 TableViewCell 行重复。

我无法在自定义UITableViewCell 对象中绘制三角形或其他几何形状吗?

I am trying to draw a checkbox triangle in a UITableViewCell.
In the Data Source protocol method -tableView:cellForRowAtIndexPath: I have added the following in the code bloc which asks if the cell is nil:

    CGContextRef context = UIGraphicsGetCurrentContext(); 
    CGContextBeginPath(context);
    CGContextMoveToPoint(context, 75,10);
    CGContextAddLineToPoint(context, 10, 150);
    CGContextAddLineToPoint(context, 160, 150);
    CGContextClosePath(context);
    [[UIColor blackColor] setStroke];
    CGContextStrokePath(context);

When executing the code, I get a series of 'invalid context 0x0' messages on the following methods:
CGContextBeginPath:
CGContextMoveToPoint:
CGContextAddLineToPoint: (twice)
CGContextClosePath:
CGContextSetStrokeColorWithColor:
CGContextDrawPath

The messages repeat for each TableViewCell row in my table.

Am I not able to draw triangles or other geometric shapes within customizedUITableViewCell objects?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贱贱哒 2024-11-06 07:24:17

如果在 drawRect: 外部调用,UIGraphicsGetCurrentContext() 将不会返回有效的上下文。您必须在视图的 drawRect: 方法中进行自定义绘图。出于您的目的,您可能应该为复选框创建一个自定义 UIView 子类,并将该视图作为子视图添加到单元格中。

UIGraphicsGetCurrentContext() will not return a valid context if called outside drawRect:. You have to do your custom drawing in a view's drawRect: method. For your purpose, you should probably create a custom UIView subclass for your checkbox and add that view as a subview to the cell.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文