IntroViewController.m 815 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // IntroViewController.m
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 9/16/15.
  6. // Copyright (c) 2015 Jason Lee. All rights reserved.
  7. //
  8. #import "IntroViewController.h"
  9. @interface IntroViewController () {
  10. }
  11. @end
  12. #pragma mark - Class Definition
  13. @implementation IntroViewController
  14. - (void)viewDidLoad {
  15. [super viewDidLoad];
  16. // Do any additional setup after loading the view.
  17. [self initUI];
  18. [self prepareViewDidLoad];
  19. }
  20. - (void)initUI {
  21. NSString *test = @"test";
  22. NSLog(@"%s\n %@", __PRETTY_FUNCTION__, test);
  23. }
  24. - (void)prepareViewDidLoad {
  25. }
  26. #pragma mark - Main Logic
  27. #pragma mark - UI Events
  28. #pragma mark - MemoryWarning
  29. - (void)didReceiveMemoryWarning
  30. {
  31. [super didReceiveMemoryWarning];
  32. // Dispose of any resources that can be recreated.
  33. }
  34. @end