UITableView和UICollectionView各种偏移
2021-01-21 本文已影响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
}