我想在 CALayer 中添加一个文本字段,但我没有等待。
代码:
-(void)drawInContext:(CGContextRef)ctx
{
NSLog(@"OK");
UITextField *field = [[UITextField alloc] initWithFrame:CGRectMake(0,120, self.frame.size.width, 100)];
[field setText:@"Test"];
[self addSublayer:field.layer];
}
任何想法,建议,良好做法:) ?