PGPickerTableView.m 635 B

1234567891011121314151617181920212223
  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. self.scrollsToTop = false;
  17. }
  18. return self;
  19. }
  20. @end