我正在为 NSView 应用边框,但如何更改边框颜色。将 NSColor 与 setBorderColor 一起使用会显示警告。我想在边框中使用橙色
[self setWantsLayer:YES];
self .layer.masksToBounds = YES;
self.layer.borderWidth = 6.0f ;
[self.layer setBorderColor:CGColorGetConstantColor(kCGColorBlack)];
如何在边框中设置其他颜色(不包括黑色和白色)
问候,哈西娜