actually using RESUME event is not a good option for homepage that have more than 1 REST requests, it's causing white screen to show up making it look like loading browser, not pretty...
Instead I found this article showing how to force application to start on homepage and use splash screen:
http://devgirl.org/2012/11/15/embed-c...
adding this code to generated by tiggzi xcode project would solve all caching/refreshing issue of tiggzi users:
viewController.wwwFolderName = @"myfolder";
viewController.startPage = @"mystartpage.html";
viewController.useSplashScreen = YES;
any chance to implement this solution?
at this moment apps from tiggzi open from background on last visited page for some random period of time, sometimes after 15 minutes sometimes after 12 hours they "reset" and start with splash screen - this is very annoying and bad form usability point of view
tiggzi should standarize this behavior either by adding option to SETTINGS or forcing consistent opening procedure like above