我有一个简单的UIView,在drawRect中:我添加了一个UIImageView作为子视图,然后尝试在该子视图的顶部绘制一条线。但是,这条线会在imageview后面画出来。
如何使绘图上下文成为子视图,以便我可以在其上绘制?
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 10.0);
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
CGContextBeginPath(context);
CGContextMoveToPoint(context, 0, 0);
CGContextAddCurveToPoint(context,125,150,175,150,200,100);
CGContextAddCurveToPoint(context,225,50,275,75,300,200);
CGContextStrokePath(context);
答案 0 :(得分:7)
制作另一个自定义视图,它只能绘制线条。将其添加为具有与ImageView相同的框架的子视图,并调用bringSubviewToFront以确保它在前面。您可能需要在opaque = NO
等自定义视图上设置一些属性,并将背景颜色设置为清除([UIColor colorWithWhite:0.0 alpha:0.0]
)。
顺便说一下,不要在drawRect中添加任何子视图。 drawRect应该只绘制,而不是更改视图属性或层次结构。您应该在其他地方添加ImageView和自定义线条图视图,也许在init中。像这样:
@implementation MyView
-(id)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
imageView = ... // however you create your image view
[self addSubview:imageView];
lineView = [[MyLineView alloc] initWithFrame:imageView.frame];
[self addSubview:lineView];
[self bringSubviewToFront:lineView];
}
return self;
}
...
@end
@implementation MyLineView
-(void)drawRect:(CGRect)rect {
// your drawing code
// remember the coordinate system now has (0, 0) at the top left corner of the
// image view, so adjust your drawing code accordingly
}
@end
答案 1 :(得分:3)
视图以后向前的顺序绘制。如果您希望在子视图中显示某些内容,则子视图必须绘制它。