NSColor. Can I write this little piece of code in one line?

71 Views Asked by At

Can I declare and initialise the colour inside the message to myLabel? Or this the only way to do it? Sorry if this is to simple for you guys.

- (IBAction)changeLabel:(id)sender {

NSColor *green = [NSColor greenColor];
[myLabel setTextColor:green];

}

1

There are 1 best solutions below

3
On BEST ANSWER

Yes you can :)

- (IBAction)changeLabel:(id)sender {
     [myLabel setTextColor:[NSColor greenColor]];
}