init(frame:collectionViewLayout:)
Creates a collection view object with the specified frame and layout.
Declaration
init(frame: CGRect, collectionViewLayout layout: UICollectionViewLayout)Parameters
- frame:
The frame rectangle for the collection view, measured in points. The origin of the frame is relative to the superview in which you plan to add it. This frame is passed to the superclass during initialization.
- layout:
The layout object to use for organizing items. The collection view stores a strong reference to the specified object. Must not be
nil.
Return Value
An initialized collection view object, or nil if the object couldn’t be created.
Discussion
Use this method when initializing a collection view object programmatically.
This method is the designated initializer.