27 lines
500 B
Objective-C
27 lines
500 B
Objective-C
|
|
//
|
||
|
|
// ViewController.m
|
||
|
|
// Example
|
||
|
|
//
|
||
|
|
// Created by Douglas Bumby on 2015-07-11.
|
||
|
|
// Copyright (c) 2015 Cosmic Labs. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "ViewController.h"
|
||
|
|
|
||
|
|
@interface ViewController ()
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@implementation ViewController
|
||
|
|
|
||
|
|
- (void)viewDidLoad {
|
||
|
|
[super viewDidLoad];
|
||
|
|
// Do any additional setup after loading the view, typically from a nib.
|
||
|
|
}
|
||
|
|
|
||
|
|
- (void)didReceiveMemoryWarning {
|
||
|
|
[super didReceiveMemoryWarning];
|
||
|
|
// Dispose of any resources that can be recreated.
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|