Reputation: 20086
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
Reputation: 63697
You tagged this question iOS so you should be using UIColor and the UIKit framework instead.
Upvotes: 2