我有一个视图控制器,它显示一个带有自调整单元格的集合视图。集合视图有一个水平滚动的部分。它看起来像这样:
问题
pageSheet
在 iOS 13+ 上使用默认样式呈现视图控制器时,集合视图的行为异常。
- 在工作表上向上拉时,单元格可能会像下面标有“校正”的单元格一样调整大小:
- 向上拉纸张时,内容可能会水平移动。有时,细胞也可能消失:
问题
有没有办法在仍然使用UICollectionViewCompositionalLayout
和pageSheet
演示风格的同时解决这个问题?
代码摘要
代码非常简单。只有 3 个类,可以ViewController.swift
使用 Xcode 中的 Single View App 项目模板将其拖放到文件中。
- 一个
UICollectionViewCell
名为Cell
. 该单元格具有 aUILabel
和 overridessizeThatFits(_:)
。 - A
UIViewController
被称为ViewController
仅用于呈现BugViewController
。 BugViewController
,它配置数据源并呈现集合视图。这就是问题发生的地方。
代码
import UIKit
// MARK: - Cell -
final class Cell: UICollectionViewCell {
static let reuseIdentifier = "Cell"
lazy var label: UILabel = {
let label = UILabel()
label.textAlignment = .center
label.frame.size = contentView.bounds.size
label.autoresizingMask = [.flexibleWidth, .flexibleHeight]
return label
}()
override init(frame: CGRect) {
super.init(frame: frame)
contentView.addSubview(label)
contentView.backgroundColor = .tertiarySystemFill
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func sizeThatFits(_ size: CGSize) -> CGSize {
.init(width: label.sizeThatFits(size).width + 32, height: 32)
}
}
// MARK: - ViewController -
final class ViewController: UIViewController {
private let button: UIButton = {
let button = UIButton(type: .system)
button.setTitle("Tap Me!".uppercased(), for: .normal)
button.addTarget(self, action: #selector(presentBugViewController), for: .touchUpInside)
button.sizeToFit()
return button
}()
override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(button)
}
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
button.center = view.center
}
@objc func presentBugViewController() {
present(BugViewController(), animated: true)
}
}
// MARK: - BugViewController -
final class BugViewController: UIViewController {
private let models = [
"Better Call Saul",
"Mad Men",
"Rectify",
"Tiger King: Murder, Mayhem, and Madness",
"Master of None",
"BoJack Horseman"
]
private lazy var collectionView: UICollectionView = {
let collectionView = UICollectionView(frame: view.bounds, collectionViewLayout: createCollectionViewLayout())
collectionView.register(Cell.self, forCellWithReuseIdentifier: Cell.reuseIdentifier)
collectionView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
collectionView.contentInset.top = 44
collectionView.backgroundColor = .white
return collectionView
}()
private lazy var dataSource = UICollectionViewDiffableDataSource<Int, String>(collectionView: collectionView) { collectionView, indexPath, itemIdentifier in
guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: Cell.reuseIdentifier, for: indexPath) as? Cell else { fatalError() }
cell.label.text = itemIdentifier
return cell
}
override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(collectionView)
var snapshot = NSDiffableDataSourceSnapshot<Int, String>()
snapshot.appendSections([0])
snapshot.appendItems(models)
dataSource.apply(snapshot)
}
private func createCollectionViewLayout() -> UICollectionViewCompositionalLayout {
let layoutSize = NSCollectionLayoutSize.init(
widthDimension: .estimated(200),
heightDimension: .absolute(32)
)
let section = NSCollectionLayoutSection(group:
.horizontal(
layoutSize: layoutSize,
subitems: [.init(layoutSize: layoutSize)]
)
)
section.interGroupSpacing = 8
section.orthogonalScrollingBehavior = .continuous
return .init(section: section)
}
}
笔记
- 我的应用程序中的集合视图实际上有很多部分并垂直滚动。这就是为什么我
orthogonalScrollingBehavior
在示例代码中使用垂直滚动的集合视图和一个部分。
失败的尝试
- 我尝试使用自动布局约束而不是
sizeThatFits(_:)
. - 我试过不使用
UICollectionViewDiffableDataSource
.
解决方法
使用子滚动视图修改单元格并传入一个字符串数组(而不是一次一个)确实可以避免这个问题。但是,如果可能的话,我想避免这种肮脏的黑客行为。