AppDelegate.m 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // AppDelegate.m
  3. // RA TradeFiling
  4. //
  5. // Created by Rui Zhang on 11/13/20.
  6. //
  7. #import "AppDelegate.h"
  8. @interface AppDelegate ()
  9. @end
  10. @implementation AppDelegate
  11. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  12. // Override point for customization after application launch.
  13. return YES;
  14. }
  15. //#pragma mark - UISceneSession lifecycle
  16. //
  17. //
  18. //- (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options {
  19. // // Called when a new scene session is being created.
  20. // // Use this method to select a configuration to create the new scene with.
  21. // return [[UISceneConfiguration alloc] initWithName:@"Default Configuration" sessionRole:connectingSceneSession.role];
  22. //}
  23. //
  24. //
  25. //- (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet<UISceneSession *> *)sceneSessions {
  26. // // Called when the user discards a scene session.
  27. // // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
  28. // // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
  29. //}
  30. @end