Monday, April 16, 2012

A simple note for On-Device-Crash...(Cocos2d-x)

This is my experience sharing.

I encounter a crash that only happened on device, but not on simulator.

It's painful to find the bug, but I did find finally.

The reason is simple, I just change my CCSprite action from a single action to CCSequence with multiple actions.

And the stupid thing is that I FORGOT to add an "NULL" at the end of sequencial actions.

Compile is fine, and the simulator runs smoothly, but It crashed when I deployed to my iPhone.

If you find a crash on action execution and that only happend on Device not on simulator.

Go to check all of your CCSequence actions, maybe you will find something that save your time( and time is money).

Hope this will help someone like me.



Welcome to my Apps Site : http://www.molioapp.com

Wednesday, April 4, 2012

A note about latest XCode 4.3.1

Caution ! There is a bug at latest XCode 4.3.1 !
Don't use the dragging files to add your source files.
Sometimes the XCode can't recognize it as a source file, and you will get an error when you link your .o files.
You need to use the add file features instead.