CALayer子类“drawInContext”被调用但不是绘图?

时间:2012-01-24 11:19:30

标签: ios calayer quartz-2d

我正在尝试绘制CALayer子类。 使用drawInContext调用setNeedsDisplay但未绘制任何内容。 这里做错了什么?

 - (void)drawInContext:(CGContextRef)ctx
{
    CGContextSetFillColorWithColor(ctx, [UIColor redColor].CGColor);
    [[UIBezierPath bezierPathWithRect:CGRectMake(100, 100, 100, 100)] fill];

    [@"Vowel" drawAtPoint:CGPointMake(0, 0) withFont:[UIFont fontWithName:@"Chalkboard" size:14]];
}

修改 我收到了这个错误:

  

CGContextAddPath:无效的上下文0x0

由于 沙尼

0 个答案:

没有答案