Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 940 Bytes

File metadata and controls

16 lines (11 loc) · 940 Bytes

##AutoScrollLabel

Provides auto scrolling for text that may be clipped by the view. iOS 4.3 and greater, works with ARC and non-ARC projects.

screenshot

http://blog.stormyprods.com/2009/10/more-details-on-autoscrolllabel-usage.html - Old, but still relevant example usage.

Usage:

autoScrollLabel.text = @"This text may be clipped, but now it will be scrolled.";
autoScrollLabel.textColor = [UIColor blueColor];
autoScrollLabel.labelSpacing = 35; // distance between start and end labels
autoScrollLabel.pauseInterval = 3.7; // seconds of pause before scrolling starts again
autoScrollLabel.scrollSpeed = 30; // pixels per second
autoScrollLabel.textAlignment = UITextAlignmentCenter; // centers text when no auto-scrolling is applied