How to set default IBInspectable value for a computed property in Xcode's Interface Builder

3.2k Views Asked by At

I have a custom UIView class which has a UILabel as a subview. I want to set the font size of the label in the Interface Builder so I made a computed property fontSize that gets and sets the UILabel font's point size.

@IBDesignable class UIMongolLabel: UIView {

    private let view = UILabel()

    let mongolFontName = "ChimeeWhiteMirrored" // font is always the same

    @IBInspectable var fontSize: CGFloat {
        get {
            if let font = view.font {
                return font.pointSize
            } else {
                return 0.0
            }
        }
        set {
            view.font = UIFont(name: mongolFontName, size: newValue)
        }
    }

    // ...
}

This works fine if the user sets a value for the Font Size:

enter image description here

But if the user just adds a new custom view, the Font Size is blank.

enter image description here

The answers here say that it doesn't make sense to have a default for a computed property in Swift, but what if I want a default for the Interface Builder? I would like it to say "17" or something. What should I do?

0

There are 0 best solutions below