TYDotIndicatorView icon indicating copy to clipboard operation
TYDotIndicatorView copied to clipboard

Animated dots to show the progress of something...

TYDotIndicatorView

Animated dots to show the progress of something... (The light color dots with dark background look nice.)

Specify the shape of dots by dotStyle (including squre, rounded corner and circle), the color of dot by dotColor and the size of dot by dotSize.

Then, start animating...

Usage

TYDotIndicatorView *dot = [[TYDotIndicatorView alloc] initWithFrame:CGRectMake(30, 50, 260, 50)
                                                                 dotStyle:TYDotIndicatorViewStyleCircle
                                                                 dotColor:[UIColor greenColor]
                                                                  dotSize:CGSizeMake(15, 15)];
[self.view addSubview:dot];
[dot startAnimating];

A Quick Peek

screenshots