iOS 11UITableView和UICollectionVi

2020-01-06  本文已影响0人  RichieQ

1、解决UITableView 部分显示不全问题

    if (@available(iOS 11.0, *)) {
        UITableView.appearance.estimatedRowHeight = 0;
        UITableView.appearance.estimatedSectionFooterHeight = 0;
        UITableView.appearance.estimatedSectionHeaderHeight = 0;
    }

2、解决UICollectionView 部分显示不全问题

      if (@available(iOS 11.0, *)) {
            _collectionView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
        }
上一篇 下一篇

猜你喜欢

热点阅读