Classes

The following classes are available globally.

  • RAMReel

    Reel class

    See more

    Declaration

    Swift

    public class RAMReel
        <
        CellClass: UICollectionViewCell,
        TextFieldClass: UITextField,
        DataSource: FlowDataSource
        where
        CellClass: ConfigurableCell,
        CellClass.DataType   == DataSource.ResultType,
        DataSource.QueryType == String,
        DataSource.ResultType: Renderable,
        DataSource.ResultType: Parsable
    >
  • RAMCell

    Example configurable cell

    See more

    Declaration

    Swift

    public class RAMCell: UICollectionViewCell, ConfigurableCell
  • RAMTextField

    Textfield with a line in the bottom

    See more

    Declaration

    Swift

    public class RAMTextField: UITextField
  • CollectionViewWrapper

    Wraps collection view and set’s collection view data source.

    See more

    Declaration

    Swift

    public class CollectionViewWrapper
        <
        DataType: Equatable,
        CellClass: UICollectionViewCell
        where
        CellClass: ConfigurableCell,
        DataType == CellClass.DataType
    >: FlowDataDestination, WrapperProtocol