NoticeViewController.m 773 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // NoticeViewController.m
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/8/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "NoticeViewController.h"
  9. @implementation NoticeTableViewCell
  10. @end
  11. @interface NoticeViewController () {
  12. }
  13. @end
  14. #pragma mark - Class Definition
  15. @implementation NoticeViewController
  16. - (void)viewDidLoad {
  17. [super viewDidLoad];
  18. // Do any additional setup after loading the view.
  19. [self initUI];
  20. [self prepareViewDidLoad];
  21. }
  22. - (void)initUI {
  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