我有一个简单的滚动图,它使用这种方法绘制自己。我正在寻找一种方法来为此图添加文本标签,但无法找到如何执行此操作。
我试过了:
[@"test" drawInRect: CGRectMake(0, 0, 10, 10) withFont:[UIFont systemFontOfSize:8]];
我收到错误消息,指出无效的上下文0x0。 如何修改下面的代码,将文本绘图代码指向正确的上下文?
-(void)drawLayer:(CALayer*)l inContext:(CGContextRef)context
{
// Fill in the background
CGContextSetFillColorWithColor(context, graphBackgroundColor());
CGContextFillRect(context, layer.bounds);
// Draw the grid lines
// DrawGridlines(context, 0.0, 32.0);
// Draw the graph
CGPoint lines[64];
int i;
// X
for(i = 0; i < 32; ++i)
{
lines[i*2].x = i;
lines[i*2].y = -(xhistory[i] * 480.0)-10;
lines[i*2+1].x = i + 1;
lines[i*2+1].y = -(xhistory[i+1] * 480.0)-10;
}
CGContextSetStrokeColorWithColor(context, graphZColor());
CGContextStrokeLineSegments(context, lines, 64);
}
答案 0 :(得分:5)
对于每个线程,UIKit维护着一堆图形上下文。您可以通过调用UIGraphicsGetCurrentContext
来获取当前线程堆栈顶部的上下文。
当您使用drawInRect:withFont:
时,字符串将自己绘制到{{1}}返回的上下文,因此您需要使UIGraphicsGetCurrentContext
返回UIGraphicsGetCurrentContext
context
参数使用drawLayer:inContext:
。完成绘图后,您必须致电UIGraphicsPushContext
。因此:
UIGraphicsPopContext