MUBar
internal class MUBar : MUNibView
Class that act like a proportional bar with an indicator on top.
-
Define the bar’s proportional width.
Declaration
Swift
internal var proportionalWidth: CGFloat { get set }
-
Define the value for the bar’s height.
Declaration
Swift
internal var value: CGFloat { get set }
-
Define the corner radius.
Declaration
Swift
internal var radius: CGFloat { get set }
-
Define the bar’s color.
Declaration
Swift
internal var color: UIColor { get set }
-
Show / hide the MUIndicator.
Declaration
Swift
internal var showIndicator: Bool { get set }
-
The maximum value of the bar.
Declaration
Swift
internal var indicatorMultiplier: CGFloat { get set }
-
Specifies the indicator’s value format.
Declaration
Swift
internal var indicatorFormat: String { get set }
-
Specifies the indicator’s proportional width.
Declaration
Swift
internal var indicatorWidth: CGFloat { get set }
-
Specifies the indicator’s value font.
Declaration
Swift
internal var indicatorTextFont: UIFont { get set }
-
Specifies the indicator’s value color.
Declaration
Swift
internal var indicatorTextColor: UIColor { get set }
-
Define the inset between the bar and the indicator.
Declaration
Swift
internal var indicatorBottomInset: CGFloat { get set }
-
Specifies the indicator’s color.
Declaration
Swift
internal var indicatorColor: UIColor { get set }
-
Default setup to load the view from a xib file.
Declaration
Swift
open override func xibSetup()