gpt4 book ai didi

iphone - CoreGraphics 中的透明背景

转载 作者:行者123 更新时间:2023-12-03 18:28:53 27 4
gpt4 key购买 nike

我试图在 CG 中获得透明背景,但它总是显示为黑色。

我有以下代码:

- (id)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
DLog(@">>> Alloc: DrawingCanvas [0x%X]", (unsigned int)self);
[self setOpaque:NO];
[self setBackgroundColor:[UIColor clearColor]];
}
return self;
}

- (void) drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGRect frame = rect;
int counter = 3;

CGContextClearRect(context, frame);
CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor);
CGContextFillRect(context, frame);
}

如何让此代码显示透明背景?

最佳答案

通过该设置,只要您不将 clearsContextBeforeDrawing 设置为 NO,当调用 drawRect: 方法时,背景就应该是透明的。删除 CGContextClearRect 和其他绘图调用。

关于iphone - CoreGraphics 中的透明背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5148084/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com