升级Xcode9之后,section间距变大

今天早上升级Xcode9 和 iOS11之后,发现app的有些TableView的section高度变大了,仔细检查之后发现这些都是group类型的TableView,原来是因为设置group类型,会自动设置高度自适应,导致- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section方法和- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section不起作用了.只需要设置为0就好了

        _settingView.estimatedRowHeight = 0;
        _settingView.estimatedSectionFooterHeight = 0;
        _settingView.estimatedSectionHeaderHeight = 0;

你可能感兴趣的:(升级Xcode9之后,section间距变大)