1234567891011121314151617181920212223242526272829 |
- //
- // MTBaseTableView.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTBaseTableView.h"
- @implementation MTBaseTableView
- - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style{
- self = [super initWithFrame:frame style:style];
- if (self) {
- if (@available(iOS 11.0, *)) {
- self.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
- } else {
- // Fallback on earlier versions
- }
- self.showsVerticalScrollIndicator = NO;
- self.separatorStyle = UITableViewCellSeparatorStyleNone;
- self.backgroundColor = [UIColor backGroundGrayColor];
- self.contentInset = UIEdgeInsetsMake(0, 0, kNumFrom375(50), 0);
- }
- return self;
- }
- @end
|