Pregunta

I just wondering if there's a solution for apps that resume too slow. Mine takes up to 10 seconds to resume.

I know that my app has large assets but is there a way to make it resume faster? or is they a way to add like an hour glass or to just display a text saying loading or something.

How can I display something to tell the player that it is loading/resuming, as soon as try to resume the app?

I hope somebody can help me. Thanks. And Im using cocos2d-x for this app.

No hay solución correcta

Otros consejos

These are the functions to be implemented in your Application Delegate class. The first function gets called when application goes background, and second one is called when application resumes.

void CCApplication::applicationDidEnterBackground();
void CCApplication::applicationWillEnterForeground();
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top