Launching the Application
- launch(啟動應用程序)
- (void)launch;
- launchArguments (將傳遞給應用程序的參數)
@property(nonatomic, copy) NSArray<NSString *> *launchArguments;
- launchEnvironment (將傳遞給應用程序的環(huán)境變量)
@property(nonatomic, copy) NSDictionary<NSString *,NSString *> *launchEnvironment;
———————————————————————————————————————
Terminating the Application
- terminate(終止應用程序的任何運行實例)
- (void)terminate;
———————————————————————————————————————