This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// insert this into your AppDelegate.m file | |
// this will fire an "appActive" event on the webview every time the app is launched | |
// whether through fast-app switching or a cold launch | |
- (void)applicationDidBecomeActive:(UIApplication *)application { | |
// delay of 1ms ensures code will be executed in new stack trace | |
// that way, event listener can't block applicationDidBecomeActive | |
// and crash the app | |
NSString *fireActiveEvent = @"window.setTimeout(function() { \n" | |
"var appActive = document.createEvent('Events'); \n" |