This function will be called when the app is inactive. Note, when receiving a phone call it is invoked.
| 76 | |
| 77 | // This function will be called when the app is inactive. Note, when receiving a phone call it is invoked. |
| 78 | void AppDelegate::applicationDidEnterBackground() |
| 79 | { |
| 80 | Director::getInstance()->stopAnimation(); |
| 81 | } |
| 82 | |
| 83 | // this function will be called when the app is active again |
| 84 | void AppDelegate::applicationWillEnterForeground() |
nothing calls this directly
no test coverage detected