I am using Pixate to style my views. My whole application works with storyboards. My App is an iPad only app.
I have a valid Pixate licenseKey and I am setting this up in the main:
int main(int argc, char * argv[])
{
@autoreleasepool {
[Pixate licenseKey:@"<my pixate license key>" forUser:@"<my email address>"];
return UIApplicationMain(argc, argv, nil, NSStringFromClass([WHVVAppDelegate class]));
}
}
When I launch the app for the very first time on a device, the views have no styling from Pixate. When I then kill the app, and then I launch it again Pixate will start working.
When I saw this happening, I tried to call [Pixate updateStylesForAllViews]; in the [viewDidAppear:] method of my very first view of my app. But the results remain the same.
Anyone familiar with this problem? How could I troubleshoot further from here?