| 1234567891011121314151617181920212223 |
- //
- // PGPickerTableView.m
- // PGPickerView
- //
- // Created by piggybear on 2017/7/26.
- // Copyright © 2017年 piggybear. All rights reserved.
- //
- #import "PGPickerTableView.h"
- @implementation PGPickerTableView
- - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style {
- if (self = [super initWithFrame:frame style:style]) {
- self.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
- self.tableFooterView = [UIView new];
- self.separatorStyle = UITableViewCellSeparatorStyleNone;
- self.backgroundColor = [UIColor clearColor];
- self.scrollsToTop = false;
- }
- return self;
- }
- @end
|