MUTabBar

@IBDesignable
open class MUTabBar : UITabBar

Class that act like UITabBar with more customizable options.

  • Describes the MUTabBar’s background color

    Declaration

    Swift

    open override var backgroundColor: UIColor? { get set }
  • Describes the MUTabBar’s selected color while it shows

    Declaration

    Swift

    @IBInspectable
    open dynamic var selectedColor: UIColor { get set }
  • Describes the MUTabBar’s unselected color while it shows

    Declaration

    Swift

    @available(iOS 10.0, *)
    @IBInspectable
    open dynamic var unselectedColor: UIColor? { get set }
  • Describes the MUTabBar’s separator color while it shows

    Declaration

    Swift

    @IBInspectable
    open dynamic var separatorColor: UIColor { get set }
  • Describes the MUTabBar’s separator height while it shows

    Declaration

    Swift

    @IBInspectable
    open dynamic var separatorHeight: CGFloat { get set }
  • Select item at index (if this index is valid)

    Declaration

    Swift

    public func select(at index: Int)
  • Initializes and returns a newly allocated view object with the specified frame rectangle.

    Declaration

    Swift

    public override init(frame: CGRect)
  • Returns an object initialized from data in a given unarchiver.

    Declaration

    Swift

    public required init?(coder aDecoder: NSCoder)
  • Initializes and returns a newly allocated view object with the specified frame rectangle.

    Declaration

    Swift

    convenience init()