美文网首页
UITableView和UICollectionView各种偏移

UITableView和UICollectionView各种偏移

作者: 天马行空得想法 | 来源:发表于2021-01-21 12:22 被阅读0次

    self.automaticallyAdjustsScrollViewInsets = NO

    // cell 向下偏移解决方法

    func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
          return 0.01
    }
    
    override func viewWillLayoutSubviews() {
            super.viewWillLayoutSubviews()
            self.collectionView.contentInset = UIEdgeInsets.zero
     }
    

    相关文章

      网友评论

          本文标题:UITableView和UICollectionView各种偏移

          本文链接:https://www.haomeiwen.com/subject/jvpugftx.html