I have an IBDesignable class which has an IBInspectable value: Int
value is basically the number of balls shown within the IBDesignable class
so I have a setup() func which adds the correct imageViews (one for each ball) using for _ 0 ..< value { }
But when changing the value I don't see the new number of balls in Interface Builder
Perhaps But Designables: Updating stays there...
How do you make setup() be executed every time Value changes ?
Thanks in advance