gpt4 book ai didi

iphone - UIView 在黑色背景中绘制带图像的矩形结果

转载 作者:塔克拉玛干 更新时间:2023-11-01 19:11:55 26 4
gpt4 key购买 nike

我有以下代码:

@implementation MyImageView
@synthesize image; //image is a UIImage
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code

}
return self;
}
-(void) removeFromSuperview
{
self.image = nil;
[super removeFromSuperview];
}


- (void)drawRect:(CGRect)rect
{
// Drawing code
if (self.image)
{

CGContextRef context = UIGraphicsGetCurrentContext();


CGContextClearRect(context, rect);
//the below 2 lines is to prove that the alpha channel of my UIImage is indeed drawn
//CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
//CGContextFillRect(context, rect);
CGContextDrawImage(context, self.bounds, self.image.CGImage);


}
}
@end

当我运行代码时,我意识到我的 View 背景是黑色的。为了测试它是否是我的 UIImage 的问题,我使用了 CGContextClearRect(context, rect) 之后注释的 2 行。确实绘制了白色背景。无论如何我可以删除黑色背景吗?当我初始化 MyImageView 时,我已经将 backgroundColor 设置为 [UIColor clearColor]。

非常感谢任何建议。谢谢

最佳答案

将背景颜色设置为 [UIColor clearColor] 应该可以。同时设置 self.opaque = NO 以启用透明度。

您还应该检查是否调用了正确的初始化程序。例如,如果 View 是 XIB 文件的一部分,则需要实现 initWithCoder: 以及 initWithFrame: 等。

关于iphone - UIView 在黑色背景中绘制带图像的矩形结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11118383/

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