UITableViewCells 尝试绘制的上下文无效
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果在
drawRect:
外部调用,UIGraphicsGetCurrentContext()
将不会返回有效的上下文。您必须在视图的drawRect:
方法中进行自定义绘图。出于您的目的,您可能应该为复选框创建一个自定义UIView
子类,并将该视图作为子视图添加到单元格中。UIGraphicsGetCurrentContext()
will not return a valid context if called outsidedrawRect:
. You have to do your custom drawing in a view'sdrawRect:
method. For your purpose, you should probably create a customUIView
subclass for your checkbox and add that view as a subview to the cell.