IndexedViewContainer

public protocol IndexedViewContainer

A view container that allows access to view at a specific index.

  • V

    Undocumented

    Declaration

    Swift

    associatedtype V : View
  • number of View in the container

    Declaration

    Swift

    var count: Int { get }
  • the View at Index in the container

    Declaration

    Swift

    func view(at index: Int) -> V