gpt4 book ai didi

objective-c - 我在 NSView 中得到错误的自定义背景颜色和黑色而不是背景图像

转载 作者:行者123 更新时间:2023-12-03 16:54:06 25 4
gpt4 key购买 nike

我正在尝试制作一个简单的应用程序,其中有一个侧边栏,并且我正在尝试根据 PSD 文件中的 RGB 值获取背景颜色,或者使用背景图像作为图案......

我已经尝试了两种方法,但目前还没有任何效果。任何帮助将不胜感激。

-(void) drawRect:(NSRect)dirtyRect {
CALayer *viewLayer = [CALayer layer];
[viewLayer setBackgroundColor:CGColorCreateGenericRGB(85.0, 179.0, 217.0, 1.0)]; //RGB plus Alpha Channel
[self setWantsLayer:YES]; // view's backing store is using a Core Animation Layer
[self setLayer:viewLayer];
}

这段代码应该显示蓝色,结果几乎是白色......甚至不接近我想要的。

第二段代码,显示黑色背景,即使我的 png 文件位于支持文件的文件夹中。

- (void)drawRect:(NSRect)dirtyRect {
NSGraphicsContext* theContext = [NSGraphicsContext currentContext];
[theContext saveGraphicsState];
[[NSGraphicsContext currentContext] setPatternPhase:NSMakePoint(0,[self frame].size.height)];
[self.customBackgroundColour set];
NSRectFill([self bounds]);
[theContext restoreGraphicsState];
}

- (id)initWithFrame:(NSRect)frame {
self = [super initWithFrame:frame];
if (self) {
self.customBackgroundColour = [NSColor colorWithPatternImage:
[NSImage imageNamed:@"buttonBg.png"]];
}
return self;
}

再次强调,我们将不胜感激任何帮助。

最佳答案

如果我没记错的话 CGColorCreateGenericRGB 期望的范围是 0.0-1.0 并会解释为什么它是白色的。这应该可以解决白色问题。

[viewLayer setBackgroundColor:CGColorCreateGenericRGB(85.0/255.0, 179.0/255.0, 217.0/255.0, 1.0)]; //RGB plus Alpha Channel

希望有帮助。

关于objective-c - 我在 NSView 中得到错误的自定义背景颜色和黑色而不是背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28647864/

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