Skip to content

Commit

Permalink
Update documentation on pauseLabel and unpauseLabel methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbpowell committed Dec 12, 2015
1 parent baaa1fa commit 213c4ce
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions MarqueeLabel.h
Original file line number Diff line number Diff line change
Expand Up @@ -312,15 +312,18 @@ typedef NS_ENUM(NSUInteger, MarqueeType) {
- (void)resetLabel;


/** Pauses the text scrolling animation, at any point during the animation.
/** Pauses the text scrolling animation, at any point during an in-progress animation.
@note This method has no effect if a scroll animation is NOT already in progress. To prevent automatic scrolling on a newly-initialized label prior to its presentation onscreen, see the `holdScrolling` property.
@see holdScrolling
@see unpauseLabel
*/

- (void)pauseLabel;


/** Un-pauses a previously paused text scrolling animation
/** Un-pauses a previously paused text scrolling animation. This method has no effect if the label was not previously paused using `pauseLabel`.
@see pauseLabel
*/
Expand Down

0 comments on commit 213c4ce

Please sign in to comment.