| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // IntroViewController.m
- // kneet2
- //
- // Created by Jason Lee on 9/16/15.
- // Copyright (c) 2015 Jason Lee. All rights reserved.
- //
- #import "IntroViewController.h"
- @interface IntroViewController () {
-
- }
- @end
- #pragma mark - Class Definition
- @implementation IntroViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
-
- [self initUI];
- [self prepareViewDidLoad];
- }
- - (void)initUI {
- NSString *test = @"test";
-
- NSLog(@"%s\n %@", __PRETTY_FUNCTION__, test);
- }
- - (void)prepareViewDidLoad {
-
- }
- #pragma mark - Main Logic
- #pragma mark - UI Events
- #pragma mark - MemoryWarning
- - (void)didReceiveMemoryWarning
- {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- @end
|