我正在尝试绘制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
由于 沙尼