proxy methods for uiapplicationdelegate#pragma markThe program is loaded (started) and is called once
- (BOOL) Application: (UIApplication *) application didfinishlaunchingwithoptions: (nsdictionary *) launchOptions
#pragma markcalled when the application loses focus(aappIf you lose focus, you cannot interact with the user)
- (void) Applicationwillresignactive: (uiapplication *) application
#pragma markwhen the program enters the background, it calls
- (void) Applicationdidenterbackground: (uiapplication *) application
#pragma markcalled when the program is about to enter the foreground
- (void) Applicationwillenterforeground: (uiapplication *) application
#pragma markcalled when the application receives focus(aappYou can interact with users only when you have the focus)
- (void) Applicationdidbecomeactive: (uiapplication *) application
#pragma markwhen the program is about to be closed, it may be called, the application will be dormant in the background and cannot receive any events .
- (void) Applicationwillterminate: (uiapplication *) application
#pragma markThe program receives a memory warning called
- (void) Applicationdidreceivememorywarning: (uiapplication *) application
Proxy methods for Uiapplicationdelegate