iphone - 我可以在drawRect中绘制一个UIView实例吗?

时间:2011-11-16 10:00:49

标签: iphone core-animation core-graphics drawrect custom-view

我正在尝试下面的内容

UIView * view = [UIView new];
view.frame = CGRectMake(50, 50, 200, 200);
view.bounds = CGRectMake(0, 0, 400, 400);
view.backgroundColor = [UIColor grayColor];
UIButton * btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[btn setFrame:CGRectMake(50, 50, 300, 50)];
[btn setTitle:@"Button" forState:UIControlStateNormal];
[view addSubview:btn];
CALayer * layer = [view layer];
[layer drawInContext:ctx];

我的问题是 1)就像我们使用CGContextRef绘制图像或文本一样,我们可以用同样的方式绘制UIView实例吗?

我对核心图形框架并不那么熟悉,所以请告诉我可能性。我的基本目标是能够以任何方式使用CGContextRef在drawRect中绘制自定义视图。

提前谢谢!!!

1 个答案:

答案 0 :(得分:0)

您必须在-(void)drawRect:(CGRect)rect的子类中实现UIView方法。在此方法中,您应该绘制到当前上下文。