Contents

collectionView(_:layout:minimumInteritemSpacingForSectionAt:)

Asks the delegate for the spacing between successive items of a single row or column.

Declaration

@MainActor optional func collectionView(_ collectionView: NSCollectionView, layout collectionViewLayout: NSCollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat

Parameters

  • collectionView:

    The collection view object displaying the flow layout.

  • collectionViewLayout:

    The layout object requesting the information.

  • section:

    The index of the section whose inter-item spacing is needed.

Return Value

The minimum space (in points) to apply between successive items in a single row or column.

Discussion

Implement this method when you want to provide custom inter-item spacing for sections in the flow layout. Your implementation can return the same spacing for all sections or it can return different spacing for different sections. You can also adjust the inter-item spacing of each section dynamically each time you update the layout. If you do not implement this method, the inter-item spacing is obtained from the properties of the flow layout object.

For a vertically scrolling layout, this value represents the minimum spacing between items in the same row. For a horizontally scrolling layout, this value represents the minimum spacing between items in the same column. The layout object uses this spacing only to compute how many items can fit in a single row or column. The actual spacing may be increased after the number of items has been determined. For more information about how inter-item spacing is applied, see the description of the minimumInteritemSpacing property.

See Also

Related Documentation

Getting the Section Spacing