PGPickerTableView.m 600 B

12345678910111213141516171819202122
  1. //
  2. // PGPickerTableView.m
  3. // PGPickerView
  4. //
  5. // Created by piggybear on 2017/7/26.
  6. // Copyright © 2017年 piggybear. All rights reserved.
  7. //
  8. #import "PGPickerTableView.h"
  9. @implementation PGPickerTableView
  10. - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style {
  11. if (self = [super initWithFrame:frame style:style]) {
  12. self.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
  13. self.tableFooterView = [UIView new];
  14. self.separatorStyle = UITableViewCellSeparatorStyleNone;
  15. self.backgroundColor = [UIColor clearColor];
  16. }
  17. return self;
  18. }
  19. @end