MainViewController.m 723 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // MainViewController.m
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/2/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "MainViewController.h"
  9. @interface MainViewController () {
  10. }
  11. @end
  12. #pragma mark - Class Definition
  13. @implementation MainViewController
  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. }
  22. - (void)prepareViewDidLoad {
  23. }
  24. #pragma mark - Main Logic
  25. #pragma mark - UI Events
  26. #pragma mark - MemoryWarning
  27. - (void)didReceiveMemoryWarning
  28. {
  29. [super didReceiveMemoryWarning];
  30. // Dispose of any resources that can be recreated.
  31. }
  32. @end