// // CustomTableView.m // HeyLets // // Created by Jason Lee on 7/17/15. // Copyright (c) 2015 jasonmakesapp. All rights reserved. // #import "CustomTableView.h" @interface CustomTableView () @end @implementation CustomTableView - (instancetype)init { if (self = [super init]) { } return self; } - (void)awakeFromNib { self.tableFooterView = [[UIView alloc] init]; } @end