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:
But if the user just adds a new custom view, the Font Size is blank.
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?