作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试制作一个具有自调整大小和无限滚动功能的collectionView,但是当我设置referenceSizeForFooterInSection
方法时,我的单元格没有显示。
当我删除estimateItemSize 属性并设置ItemSize 属性时,将显示单元格。
我的代码有什么问题?
我的VC:
override func viewDidLoad() {
super.viewDidLoad()
// Set explorerTableView
setupExplorerCollectionView()
// load presenter viewDidLoad
presenter.viewDidLoad()
}
func setupExplorerCollectionView() {
// Set flow layout
if let flowLayout = explorerCollectionView.collectionViewLayout as? UICollectionViewFlowLayout {
flowLayout.estimatedItemSize = CGSize(width: self.view.frame.width, height: 398)
flowLayout.minimumLineSpacing = 0
flowLayout.scrollDirection = .vertical
}
// Set delegate & dataSource
explorerCollectionView.dataSource = self
explorerCollectionView.delegate = self
// Register cells
explorerCollectionView.register(ExplorerCell.self)
explorerCollectionView.registerView(LoadingCell.self, for: UICollectionElementKindSectionFooter)
}
extension ExplorerViewController: ExplorerView {
func loadExplorerData(_ stories: [Story]) {
self.stories.append(contentsOf: stories)
self.explorerCollectionView.reloadData()
}
func showNoContentView() {
//
}
extension ExplorerViewController: UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return stories.count
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
if indexPath.item == stories.count - 1 {
if loadMore == .haveMore {
}
}
let cell = collectionView.dequeueReusableCell(for: indexPath) as ExplorerCell
cell.setup(with: stories[indexPath.item])
return cell
}
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
var footer: LoadingCell!
if (kind == UICollectionElementKindSectionFooter) && (loadMore != .finished){
footer = collectionView.dequeueReusableView(of: kind, for: indexPath) as LoadingCell
footer.setup()
}
return footer
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
return (loadMore == .finished) ? CGSize.zero : CGSize(width: self.view.frame.width, height: 50)
}
}
谢谢。
最佳答案
我最终使用collectionView(_:layout:sizeForItemAt:)
来计算每个单元格的内容大小。
关于ios - 为什么我不能将 UICollectionViewFlowLayout 中的 referenceSizeForFooterInSection 与 EstimateItemSize 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43814026/
我正在尝试制作一个具有自调整大小和无限滚动功能的collectionView,但是当我设置referenceSizeForFooterInSection方法时,我的单元格没有显示。 当我删除estim
我是一名优秀的程序员,十分优秀!