In my custom UIView I have a property that I expose to the storyboard with @IBInspectable
.
/**
My custom property documentation.
*/
@IBInspectable var myProperty: Double = 2.5
Is there a way to show a documentation when a user hovers the cursor over the field in the attribute inspector? It does work for built in elements and I would like to do the same for my property.