IBInspectable is a keyword that enables a property to be set from Xcode Interface Builder.
IBInspectable is a keyword that enables a property to be set from Xcode Interface Builder.
Sample Objective-C usage:
@property IBInspectable float myCustomProperty;
Sample Swift usage:
@IBInspectable public var myCustomProperty:float = 1.0
See also: ibdesignable