this function will be called when the app is active again
| 150 | |
| 151 | // this function will be called when the app is active again |
| 152 | void AppDelegate::applicationWillEnterForeground() |
| 153 | { |
| 154 | if (_testController) |
| 155 | { |
| 156 | // _testController->onEnterForeground(); |
| 157 | } |
| 158 | |
| 159 | Director::getInstance()->startAnimation(); |
| 160 | } |
| 161 | |
| 162 | void AppDelegate::applicationWillQuit() |
| 163 | { |
nothing calls this directly
no test coverage detected