ElongationHeader

open class ElongationHeader : UIView, Expandable

Expanded copy of ElongationCell.

  • Container of all the subviews.

    Declaration

    Swift

    public var contentView: UIView
  • View on top half of contentView. Add here all the views which wont be scaled and must stay on their position.

    Declaration

    Swift

    public var topView: UIView!
  • This is the front view which can be scaled if scaleFactor was configured in ElongationConfig. Also to this view can be applied ‘parallax’ effect.

    Declaration

    Swift

    public var scalableView: UIView!
  • The view which comes from behind the cell when you tap on the cell.

    Declaration

    Swift

    public var bottomView: UIView!
  • top constraint of bottomView.

    Declaration

    Swift

    public var bottomViewTopConstraint: NSLayoutConstraint!