18 lines
330 B
Objective-C
18 lines
330 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// Example
|
|
//
|
|
// Created by Douglas Bumby on 2015-07-11.
|
|
// Copyright (c) 2015 Cosmic Labs. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
return YES;
|
|
}
|
|
|
|
@end
|