Starting with Xcode9 (iOS 11), you can now manage your colors with Assets.
I made a UIColor Extension and registered a color and made a function.
It's easier to manage the colors, and I think it's easier to work with the designers. I thought to myself.
It's a very good feature, but it only works on iOS 11 and above, so you need to be careful.
If you don't set Deployment Target to 11.0 or higher, you will get a warning.
Open Asset and right click -> Select “New Color Set”.
Here we register a dark green with the name “ORIGINAL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
if #available(iOS 11.0, *) { | |
self.view.backgroundColor = UIColor.init(named: "original") | |
} else { | |
self.view.backgroundColor = .red | |
} | |
} | |
} |