Popularity
8.3
Stable
Activity
5.2
-
1,966
55
222

Code Quality Rank: L3
Programming language: Objective-C
License: MIT License
Tags: UI     Label    
Latest version: v1.0.0

RQShineLabel alternatives and similar libraries

Based on the "Label" category.
Alternatively, view RQShineLabel alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of RQShineLabel or a related project?

Add another 'Label' Library

README

RQShineLabel

A UILabel subclass that lets you animate text similar to Secret app.

image

Installation

CocoaPods

RQShineLabel is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "RQShineLabel"

Manually

  1. Download and drop RQShineLabel.h and RQShineLabel.m in your project.
  2. Congratulations!

Usage

- (void)viewDidLoad
{
  self.shineLabel = [[RQShineLabel alloc] initWithFrame:CGRectMake(16, 16, 298, 300)];
  self.shineLabel.numberOfLines = 0;
  self.shineLabel.text = @"some text";
  self.shineLabel.backgroundColor = [UIColor clearColor];
  [self.shineLabel sizeToFit];
  self.shineLabel.center = self.view.center;
  [self.view addSubview:self.shineLabel];
}

- (void)viewDidAppear:(BOOL)animated
{
  [super viewDidAppear:animated];
  [self.shineLabel shine];
}

Other methods

fade in with completion block

- (void)shineWithCompletion:(void (^)())completion;

fade out

- (void)fadeOut

fade out with completion block

- (void)fadeOutWithCompletion:(void (^)())completion;

Requirements

iOS >= 6.0

Author

gk

License

RQShineLabel is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the RQShineLabel README section above are relevant to that project's source code only.