Is there a way to delimit values on IBInspectable var or change how much the value increases or decreases?
For example, suppose that I have the following var:
@IBInspectable public var percentage:CGFloat = 0.0
I want to delimit from 0.0 to 1.0.
I was wondering because I can do it on alpha values:
And when I click on the upper arrow it adds 0.05 on its value.