Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am aware that the iOS framework has a concept of UIAppearance which allows you to easily adjust the visual appearance of the controls in your application. What I am wondering is whether there are any published libraries of colour palettes / themes that work well in the iOS context?

For example, an iOS equivalent of jQuery Mobile theme roller:

http://jqueryui.com/themeroller/

(NOTE: I have googled this first!)

share|improve this question

2 Answers

If you're looking for a better way to style your application's interface, you have a few options.

There's the Open Source project NUI, located at https://github.com/tombenner/nui.git

It allow you to set styling using a CSS like interface. One drawback is that you have to rename some of your classes to inherent from NUI interface classes instead of standard user interface classes.

Also, there's Pixate, which allows you to directly style using CSS at http://www.pixate.com

However, it's not available yet, and it will cost $300, according to their Kickstarter page.

share|improve this answer

So far I've found two options for this:

First is App Design Vault. Their price range is from $59 to $89 per theme. Basically you have to use the Apply method of each theme for different elements. The drawback is that you can not modify themes and if you decide to change the theme you have to find each call to the theme apply method and change that to the new theme. However, this also gives you the ability to mix different themes and use them at the same time.

Next is Pixate which basically picks up the design from a CSS file and applies it to your elements. This has a free trial version and the licenses start from $79 which is academic and goes up to $1299. Although many CSS keywords are same as the standard CSS however you need to know their special queries and keywords to use the most out of it. Of course they are all well documented. The good thing about this is that if you decide to change the theme all you need to do is to replace a CSS file.

Both work in Objective-C and MonoTouch (Xamarin). I am now trying to see which one is a better choice for using with Monotouch.Dialog

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.