所有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;
}
}
网友评论