横向模式下的Swift Collection View

时间:2018-08-18 11:08:47

标签: ios swift uicollectionview

因此,我正在构建一个应用程序,其中有一个连续有2个单元格的集合视图。但是,当我旋转屏幕时,例如要将其更改为4。我该怎么做?

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
    let cellWidth =  (view.frame.size.width - 50) / 2
    return CGSize(width: cellWidth, height: cellWidth)
}

override func viewWillTransition(to size: CGSize,
                                 with coordinator: UIViewControllerTransitionCoordinator)
{
    collectionView?.collectionViewLayout.invalidateLayout()
}

2 个答案:

答案 0 :(得分:1)

viewWillTransition中添加超级方法。

super.viewWillTransition(to: size, with: coordinator)

这将允许超级视图将此方法类传递到其所有子视图。

override func viewWillTransition(to size: CGSize,
                             with coordinator: UIViewControllerTransitionCoordinator)
{
      super.viewWillTransition(to: size, with: coordinator)
      collectionView?.collectionViewLayout.invalidateLayout()
}

答案 1 :(得分:0)

这段代码帮助我解决了问题。

func collectionView(_ collectionView: UICollectionView,
                    layout collectionViewLayout: UICollectionViewLayout,
                    sizeForItemAt indexPath: IndexPath) -> CGSize {
    let cellWidth =  (view.frame.size.width - 50) / 2
    if UIDevice.current.orientation.isLandscape {
        return CGSize(width: (cellWidth-30)/2, height: (cellWidth-30)/2)
    } else {
        return CGSize(width: cellWidth, height: cellWidth)
    }
}