CustomTableView.m 427 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // CustomTableView.m
  3. // HeyLets
  4. //
  5. // Created by Jason Lee on 7/17/15.
  6. // Copyright (c) 2015 jasonmakesapp. All rights reserved.
  7. //
  8. #import "CustomTableView.h"
  9. @interface CustomTableView () <UITableViewDelegate>
  10. @end
  11. @implementation CustomTableView
  12. - (instancetype)init {
  13. if (self = [super init]) {
  14. }
  15. return self;
  16. }
  17. - (void)awakeFromNib {
  18. self.tableFooterView = [[UIView alloc] init];
  19. }
  20. @end