钨和钢等 NSColor 也可用吗?

发布于 2024-08-28 05:46:35 字数 153 浏览 5 评论 0原文

我知道 Cocoa 为您提供了 whiteColorblackColordarkGrayColor,但是它们也有 Apple 颜色面板中的颜色吗?有“雪”、“钨”、“钢”、“锡”等颜色?或者我应该自己创建那些?

I know Cocoa gives you whiteColor, blackColor, darkGrayColor, but do they also have the colors from in Apple's color panel? With colors like "Snow", "Tungsten", "Steel", "Tin" ? Or should I create those myself?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

森林散布 2024-09-04 05:46:35

您需要 NSColorList“蜡笔”对应的是颜色面板中的蜡笔盒。

You want NSColorList. The one named “Crayons” corresponds to the crayon box in the Color Panel.

や莫失莫忘 2024-09-04 05:46:35

您应该找到这些颜色的 rgb 值并创建您自己的 NSColor。来自 rgb 的 NSColor 文档 此处

You should find the rgb values for those colors and make your own NSColor. Documentation for NSColor from rgb here

爺獨霸怡葒院 2024-09-04 05:46:35

您可以将类别添加到NSColor并使用您想要的任何名称创建任何颜色......所以您需要一个make 2文件... NSColor+YourCategories.h...

#import <Cocoa/Cocoa.h>
@interface NSColor (YourCategories)  // Tag in () is "yours" to name,
+ (NSColor *) MAUVE;
@end    

以及一个适当命名的 NSColor+YourCategories.m 文件

#import "NSColor+YourCategories.h"
@implementation NSColor (YourCategories)
+ (NSColor *) MAUVE { static NSColor*  MAUVE = nil;  if( MAUVE == nil )
              MAUVE = [NSColor colorWithDeviceRed:0.712 green:0.570 blue:0.570 alpha:1.000];r
       return MAUVE;
 }

简单的

#import NSColor+YourCategories.h

任何 您希望能够引用您命名的颜色的页面,例如...

[[self window]setBackGroundColor: [NSColor MAUVE]];

∀Ⓛ∃✖

You can add Categories to NSColor and make ANY color with ANY name you want… So you need a make 2 files… NSColor+YourCategories.h

#import <Cocoa/Cocoa.h>
@interface NSColor (YourCategories)  // Tag in () is "yours" to name,
+ (NSColor *) MAUVE;
@end    

and an aptly named NSColor+YourCategories.m file

#import "NSColor+YourCategories.h"
@implementation NSColor (YourCategories)
+ (NSColor *) MAUVE { static NSColor*  MAUVE = nil;  if( MAUVE == nil )
              MAUVE = [NSColor colorWithDeviceRed:0.712 green:0.570 blue:0.570 alpha:1.000];r
       return MAUVE;
 }

The simply

#import NSColor+YourCategories.h

on any page which you want to be able to refer to your named colors, like…

[[self window]setBackGroundColor: [NSColor MAUVE]];

∀Ⓛ∃✖

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文