This is very specific bugfix so I want to ask you to test it before I release, thank you.
As usually for betas to install you have to unzip attached archive and copy the contents to /Library/Frameworks/
then open Xcode and click in main menu "Xcode->Empty caches" and "Build->Clean All Targets"
Also NimbleKit template will be modified after release, but for now to test it you will have to modify you APP_NAME_Delegate.m file in your project:
1. Locate @implementation NimbleAppDelegate in the file and right before this line insert extern BOOL _mainWebViewLoaded;
2. In the method - (void)applicationDidFinishLaunching:(UIApplication *)application locate line [nimble release]; and right after it insert
- Code: Select all
while (!_mainWebViewLoaded) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
}
After this you should see Default.png file during app is loaded and when it disappears you should see you main application screen fully loaded, also be aware that if you load something from the internet it may take a lot of time and the default screen will still remain on the top which can make user think the app has freeze so please avoid using internet connection on the main application screen
