azamsharp
azamsharp

Reputation: 20086

How to use NSColor? Where does it belong? How to reference it?

I want to use the keyboardFocusIndicatorColor inside my code but not sure where NSColor is. The documentation says AppKit.framework but when I try to link a library AppKit.framework does not exist.

NSColor *transBG = [[NSColor keyboardFocusIndicatorColor]

Upvotes: 1

Views: 1394

Answers (1)

Jano
Jano

Reputation: 63697

You tagged this question iOS so you should be using UIColor and the UIKit framework instead.

Upvotes: 2

Related Questions