Which event is called during the deploy iOS apps?

Which event is called during the roll out apps?

In objective c with event name:

applicationWillEnterForeground

I want set badge = 0 (native.setProperty( “applicationIconBadgeNumber”, 0 )) for app when it roll out, but i do not know how it make.

With Corona SDK, you setup a system event listener on the Runtime and during certain events, like suspend, resume you get notified.  See:

http://docs.coronalabs.com/api/event/system/type.html

thanks

With Corona SDK, you setup a system event listener on the Runtime and during certain events, like suspend, resume you get notified.  See:

http://docs.coronalabs.com/api/event/system/type.html

thanks