EVOverlayView

open class EVOverlayView<T> : UIView, EVOverlay

Base class for the view that overlay’s the drawer view. User’s should extend this class and create their own Overlay view’s.

  • Dictionary of parameters [String:Any?] that the user should access inside the setupUI() method in order to set the layout for their cell

    Declaration

    Swift

    public typealias OverlayType = T
  • Undocumented

    Declaration

    Swift

    open var viewParameters: T?
  • Stored property that updates the viewParameters and calls the setupUI() method

    Declaration

    Swift

    open var parameters: T? { get set }
  • Method user should override in order to allow for a dynamic cell layout

    Declaration

    Swift

    open func setupUI()