AppDelegate.m 337 B

1234567891011121314151617181920
  1. //
  2. // AppDelegate.m
  3. //
  4. // Copyright (c) 2013-2017 Evgeny Aleksandrov. License: MIT.
  5. #import "AppDelegate.h"
  6. #import "ViewController.h"
  7. @interface AppDelegate ()
  8. @end
  9. @implementation AppDelegate
  10. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  11. return YES;
  12. }
  13. @end