ios11 automaticallyAdjustsScrollViewInsets 失效

所有tableViewController 继承这个基类.把处理代码写在基类

#import "BaseTabVc.h"

@interface BaseTabVc ()

@end

@implementation BaseTabVc

- (void)viewDidLoad {

[super viewDidLoad];

[self seting];

}

-(void)seting{

//    self.automaticallyAdjustsScrollViewInsets = NO;

BOOL isRealize = [self.tableView respondsToSelector:@selector(contentInsetAdjustmentBehavior)];

if (isRealize) {

self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

}else{

self.automaticallyAdjustsScrollViewInsets = NO;

}

}

你可能感兴趣的:(ios11 automaticallyAdjustsScrollViewInsets 失效)