// // NoticeViewController.m // kneet2 // // Created by Jason Lee on 10/8/15. // Copyright © 2015 ntels. All rights reserved. // #import "NoticeViewController.h" @implementation NoticeTableViewCell @end @interface NoticeViewController () { } @end #pragma mark - Class Definition @implementation NoticeViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. [self initUI]; [self prepareViewDidLoad]; } - (void)initUI { } - (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