问题描述:
iOS11上TableView section之间的间距变的非常大
问题原因:
Self-Sizing在iOS11以前的系统是默认关闭的,但是iOS11上是默认开启的,Headers, footers, and cells都默认开启Self-Sizing,所有estimated 高度默认值从iOS11之前的 0 改变为UITableViewAutomaticDimension
解决方案:
iOS11下不想使用Self-Sizing的话,可以通过以下方式关闭:
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
解决方案优化:
以上的代码可以关闭Self-Sizing,修复iOS11上TableView的一些显示bug,但有个问题:如果项目中使用TableView的地方比较多,每一处都要添加上面的代码,工作量会比较大,所以上述方案优化一下:让TableView默认关闭Self-Sizing。
//
// UITableView+AdapteriOS11.m
// JamBoHealth
//
// Created by zyh on 2018/2/9.
// Copyright © 2018年 zyh. All rights reserved.
//
#import "UITableView+AdapteriOS11.h"
@implementation UITableView (AdapteriOS11)
+ (void)load
{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
Class class = [self class];
SEL originalSel = @selector(initWithFrame:style:);
SEL mySel = @selector(jb_initWithFrame:style:);
Method originalMethod = class_getInstanceMethod(class, originalSel);
Method mySwizzledMethod = class_getInstanceMethod(class, mySel);
BOOL didAddMethod = class_addMethod(class, originalSel, method_getImplementation(mySwizzledMethod),
method_getTypeEncoding(mySwizzledMethod));
if (didAddMethod) {
class_replaceMethod(class,
mySel,
method_getImplementation(originalMethod),
method_getTypeEncoding(originalMethod));
} else {
method_exchangeImplementations(originalMethod, mySwizzledMethod);
}
});
}
- (instancetype)jb_initWithFrame:(CGRect)frame style:(UITableViewStyle)style
{
[self jb_initWithFrame:frame style:style];
self.estimatedSectionHeaderHeight = 0;
self.estimatedSectionFooterHeight = 0;
NSLog(@"jb_initWithFrame:style:");
return self;
}
@end
思路就是通过Method Swizzling替换TableView的初始化方法,在自定义的初始化方法中关闭Self-Sizing,这样只需添加两个文件,不用修改其他代码就可以解决问题。
但是替换系统方法还是有一定的风险,建议尽量少使用。另外关于此问题不知道大家有没有什么更好的方法,还望不吝赐教。
参考文章:
ios 11 tableView适配问题
强烈推荐这篇关于方法交换的文章,写的非常好:
Method Swizzling的各种姿势
网友评论