MarqueeLabel Versions Save

A drop-in replacement for UILabel, which automatically adds a scrolling marquee effect when the label's text does not fit inside the specified frame

4.5.0

2 months ago
  • Adds visionOS support (thanks @eric!)
  • Bumps minimum deployment target to 12.0, to keep Xcode happy

Note that MarqueeLabel probably still supports older iOS versions than 12.0, but you might have do some manually import the library instead of using Cocoapods (or do some trickery with your own project Podfile).

What's Changed

New Contributors

Full Changelog: https://github.com/cbpowell/MarqueeLabel/compare/4.4.0...4.5.0

4.4.0

6 months ago
  • Add hooks to catch when content size settings change (thanks @iDevelopper and @LeoNatan!)
  • Add a Privacy Manifest file to MarqueeLabel (as a third-party SDK), per Apple guidance and upcoming requirements.

4.3.2

7 months ago
  • Bumps minimum deployment target to iOS 11.0 to keep Xcode happy (thanks @ale-gen!)

4.3.1

9 months ago
  • Thanks to @yujinakayama for correcting an issue where using triggerScrollStart wouldn't override a holdScrolling condition (PR #289)

4.3.0

2 years ago
  • Adds the textCoordForFramePoint function, which converts a point in a MarqueeLabel's frame coordinate system to a point in the scrolling label's coordinate system. It could be useful for determining the word or character under a user tap point, as now demonstrated in the demo project here. (thanks to @LucaGaspa for the feature request!)
  • Adds an animationPosition property that describes the position of the scroll animation (can be queried while the animation is in-progress). (thanks to @alexandre-odet for the suggestion!)

4.1.1

2 years ago

4.2.1

2 years ago
  • Fixes an issue where the labelReturnedToHome() function was not being called in some cases, particularly if the scroll animation was interrupted by a frame resize (thanks to @alexandre-odet for helping to bring it to my attention!)

4.2.0

2 years ago
  • MarqueeLabel will now allow you to set a forcedScrolling property to trigger the scrolling animation, even if the label text is shorter than the specified frame. Note - there may be weird edge cases when using this! (thanks @hariseldon78 for PR #148….merged after 5 years!)

4.1.0

2 years ago
  • Adds the capability to set adjustsFontSizeToWidth and minimumScaleFactor and avoid scrolling by shrinking the font size instead. (down to the scale you specify!). See the Special Note here. Thanks @vladkorotnev!

4.0.5

3 years ago
  • Reverts 1028e99d1b885969962903e162ae6681514755b2, which erroneously set some project deployment targets to iOS 12 (thanks @chickdan!)