Predefined IBDesignable

497 Views Asked by At

I've been searching every possible way I can think off and haven't found a solution.

So I was wondering if there is a possibility if you can create list of values for IBDesignable variable and if so, how do you do it. I'm looking for this because I don't like that the only values I can get are either a number, boolean selection or writable string.

I would like to have a few predefined values that I can select from, like lets say text type on UITextField.

EDIT1:

Can anyone tell me how to create IBInspectable of type range in swift, since:

@IBInspectable var test = 0...3 {
    didSet {
        // Ensure user enters a valid shape while making it lowercase.
        // Ignore input if not valid.
    }
}

doesn't work with error "Property cannot be marked @IBInspectable because its type cannot be represented in Objective-C".

0

There are 0 best solutions below