MTBaseTableView.m 802 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MTBaseTableView.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTBaseTableView.h"
  8. @implementation MTBaseTableView
  9. - (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style{
  10. self = [super initWithFrame:frame style:style];
  11. if (self) {
  12. if (@available(iOS 11.0, *)) {
  13. self.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  14. } else {
  15. // Fallback on earlier versions
  16. }
  17. self.showsVerticalScrollIndicator = NO;
  18. self.separatorStyle = UITableViewCellSeparatorStyleNone;
  19. self.backgroundColor = [UIColor backGroundGrayColor];
  20. self.contentInset = UIEdgeInsetsMake(0, 0, kNumFrom375(50), 0);
  21. }
  22. return self;
  23. }
  24. @end