This documentation is for an old version of nativeCSS. For the latest versions of nativeCSS see the latest documentation
iOS installation and basic styling

Installation is simple.
Unzip nativecss-0.1.zip
Drag into your project
Select “Copy Items into Destination Group Folder”
Check the files are in your project
Add the “QuartzCore.framework”, “CoreText.framework”, “CoreImage.framework” and “Accelerate.framework” to your project.
Select your Target and the tab ‘Build Settings’. Search for “linker flags” and add “-all_load” and “-Objc”
Add the line
#import "UIApplication+NativeCSS.h"
to the top of your AppDelegate.m file.
Add the line:
[
UIApplication
styleWithCSSString:@
"label{background-color:red}"
];
to your app delegate’s applicationDidFinishLaunching: method:
Start the app! It should look a bit like this:

Well done, you have successfully installed nativeCSS.