在UITableViewController
,UITableViewCell
中,我有一个每行固定数量的静态UICollectionViewCells
(无间距)的网格。
extension NounsTVC: UICollectionViewDataSource {
func collectionView( _ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return cellIds.count
}
func collectionView( _ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell( withReuseIdentifier: cellIds[indexPath.item], for: indexPath)
cell.layer.borderColor = UIColor.gray.cgColor
cell.layer.borderWidth = 0.5
return cell
}
}
extension NounsTVC: UICollectionViewDelegateFlowLayout
{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
return UIEdgeInsets(top: 0, left: 0, bottom: 10, right: 0)
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
return 0
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let availableWidth = collectionView.bounds.size.width
let minimumWidth = floor(availableWidth / cellsPerRow)
let remainder = availableWidth - minimumWidth * CGFloat(cellsPerRow)
let columnIndex = indexPath.row % Int(cellsPerRow)
let cellWidth = CGFloat(columnIndex) < remainder ? minimumWidth + 1 : minimumWidth
return CGSize(width: cellWidth, height: 45)
}
}
很好。
但是,当我旋转设备时,它需要调出这些布局方法。
这看起来像答案:Swift: How to refresh UICollectionView layout after rotation of the device
但是我没有UICollectionView
作为invalidLayout()
,因为UICollectionView
是在IB中创建的(据我了解),所以如何在UICollectionView
上调用invalidateLayout ?
答案 0 :(得分:0)
在上述情况下发现了两个问题。
首先,xcode并没有在我的自定义UITableViewCell中通过在情节提要和.swift文件之间拖动一条线来创建IBOutlet(显然是某些星座中的错误)。解决方案是手动键入代码,然后按ctrl拖动并将其反向放置到情节提要中的正确视图。
@IBOutlet weak var myCollectionView: UICollectionView!
第二,因为集合视图是在自定义UITableViewCell中实例化的,所以无法使用viewWillTransitionToSize:withTransitionCoordinator:或viewWillLayoutSubviews(表视图方法)。但是,UITableViewCell确实具有以下内容,可以在其中调用.invalidateLayout():
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?)
{
super.traitCollectionDidChange(previousTraitCollection)
guard previousTraitCollection != nil else
{ return }
myCollectionView.collectionViewLayout.invalidateLayout()
}