1234567891011121314151617181920 |
- //
- // AppDelegate.m
- //
- // Copyright (c) 2013-2017 Evgeny Aleksandrov. License: MIT.
- #import "AppDelegate.h"
- #import "ViewController.h"
- @interface AppDelegate ()
- @end
- @implementation AppDelegate
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- return YES;
- }
- @end
|