Launching the Application
- launch(启动应用程序)
- (void)launch;
- launchArguments (将传递给应用程序的参数)
@property(nonatomic, copy) NSArray<NSString *> *launchArguments;
- launchEnvironment (将传递给应用程序的环境变量)
@property(nonatomic, copy) NSDictionary<NSString *,NSString *> *launchEnvironment;
———————————————————————————————————————
Terminating the Application
- terminate(终止应用程序的任何运行实例)
- (void)terminate;
———————————————————————————————————————