I have nice little app that I am wanting to release on app store, but I want it to have more than 1 option as far as color scheme goes. I've built the app using a single storyboard and Xcode 5. I've had a suggestion of storing separate plists for each color scheme in my Xcode project and then reading key value pairs to assign colors to the elements, but I am not sure where to begin to do this. Also, when I look at my info.plist for my project, I don't see any lines that refer to the storyboard elements. Any help would be greatly appreciated.
Thank you for your time!
You should not be using info.plist for this. You can add additional custom plist files, which can hold data. You can then read these files into
NSDictionary
objects and use the data to set the colors and/or other UI related settings. This is a good idea, because you can then add or edit color schemes without touching the code. You should read tutorials on property lists.Once you have set up your UI elements and have decided what is colored how (independent of the actual colors), you would map these understandings to the dictionary. For example, key:
BarButtonItemsColor
value:#FF0000
, key:NavigationBarColors
value:#00FF00
. In this example, bar button items are mapped to a key, as are navigation bars. Now you need code to read this mapping and implement the actual tinting. I recommend usingUIAppearance
proxies. Now, you can create several plist files with different colors (and basically add as many plist themes as you want), without actually changing the code of the parser method, which reads a plist and knows which key influences what UI elements. In this example, I used hex color format for ease.