NSColor for users The highlight color will be the selectedControlColor control color
As far as I know, you first need to convert selectedControlColor to a known color space, since it is not based on NSNamedColorSpace.
NSNamedColorSpace = . , .
, ( ) . , . , , , , , , .
NSColor *aColor = [[NSColor selectedControlColor] colorUsingColorSpaceName:NSCalibratedRGBColorSpace];
if (aColor) {
NSLog(@" Red %f, Green %f, Blue %f, Alpha %f,", aColor.redComponent,aColor.greenComponent,aColor.blueComponent,aColor.alphaComponent);
}
.
, , , .