- [Common] Adds support for IBDesignable to MarqueeLabel - while you won't see the scrolling animation, IBInspectable properties set via Interface Builder will be shown. The
leadingBuffer
,trailingBuffer
, andfadeLength
properties are probably the most useful! - [Swift] Fixes setting
scrollRate
andscrollDuration
IBInspectable properties. Turns out Optionals are not compatible with IBInspectable. Rather than returningnil
if unused, these properties will now return0.0
(i.e.scrollRate
will be 0.0 if you set ascrollDuration
value, and vice versa) - [Swift] Fixes two self-referencing properties,
adjustsFontSizeToFitWidth
andminimumScaleFactor
. Setting either of these properties would have resulted in a crash.