Попробуйте это-
NSMutableAttributedString *attributedButtonTitle = [[NSMutableAttributedString alloc] initWithString:@"Put the title of your choice"];
[attributedButtonTitle addAttribute:NSForegroundColorAttributeName value:[NSColor blueColor] range:NSMakeRange(0,[@"Put the title of your choice" length] )];
[buttonWithTypeCheckBox setAttributedTitle:attributedButtonTitle];
Надеюсь, это поможет:)