Contents

willTransition(from:to:)

Tells your view that the layout object of the collection view is about to change.

Declaration

func willTransition(from oldLayout: UICollectionViewLayout, to newLayout: UICollectionViewLayout)

Parameters

  • oldLayout:

    The current layout object associated with the collection view.

  • newLayout:

    The new layout object that is about to be applied to the collection view.

Discussion

The default implementation of this method does nothing. Subclasses can override this method and use it to prepare for the change in layouts.

See Also

Managing layout changes