我很清楚这个问题已经被问过很多次,但显然有些不同。我在 UIImageView 中的面上绘制矩形,所以我需要矩形是透明的。
据我所知,我遵循所有建议在 View 中绘制透明背景(例如,清除当前图形上下文的矩形)。我还将 View 设置为不透明并将 backgroundColor 设置为 clearColor。是否需要其他步骤?
-(instancetype)init
{
self = [super init];
if ( self ) {
self.opaque = NO;
self.backgroundColor = [UIColor clearColor];
self.clearsContextBeforeDrawing = NO;
}
return self;
}
- (void)drawRectCGRect)rect {
UIBezierPath * path = [UIBezierPath bezierPathWithRect:rect];
CGContextRef ctx = UIGraphicsGetCurrentContext();
[[UIColor clearColor] setFill];
CGContextClearRect(ctx, rect);
[self.rectColor setStroke];
path.lineWidth = 5.0;
[path stroke];
}
@end
我需要背景是透明的,这个 View 默认显示为黑色。我尝试直接清除 CGContext 的矩形,因为我听说这通常是(曾经)解决方案。
我猜你的 init
方法永远不会被调用(毕竟,这不是指定的初始化程序),所以你的代码永远不会运行,因此 View 被创建为不透明的。
关于ios - 如何在 UIView 中绘制透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33643859/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |