I am using PixateFreestyle as a pod. I can style views with styleId from the default.css file. I am trying to change the style information on the fly in code. I have tried this:
self.view.styleCSS = [NSString stringWithFormat:@"{ background-color : #991199; }"];
[PixateFreestyle updateStylesForAllViews];
This has no effect. I have also tried:
self.view.styleCSS = [NSString stringWithFormat:@"{ background-color : #991199; }"];
[self.view updateStyles];
This also has no effect.
Is this possible?