• Stars
    star
    112
  • Rank 312,240 (Top 7 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created about 9 years ago
  • Updated almost 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple, easy to use, Multi coloured and customisable loading indicator (loader) for iOS applications.

BLMultiColorLoader

Simple, easy to use, multi coloured and customisable loading indicator (loader) for iOS applications.

Version License Platform

Screenshots

Demo

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

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

pod "BLMultiColorLoader"

Basic usage

Add BLMultiColorLoader class ("BLMultiColorLoader.h" and "BLMultiColorLoader.m") into your project.

#import <UIKit/UIKit.h>
#import "BLMultiColorLoader.h"

@interface ViewController : UIViewController

@property (weak, nonatomic) IBOutlet BLMultiColorLoader *multiColorLoader;

@end
@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];

// Customize the line width
_multiColorLoader.lineWidth = 2.0;

// Pass the custom colors array
_multiColorLoader.colorArray = [NSArray arrayWithObjects:[UIColor redColor],
[UIColor purpleColor],
[UIColor greenColor],
[UIColor blueColor], nil];
[_multiColorLoader startAnimation];

}

- (void)doSomething
{    
  [_multiColorLoader startAnimation];
  [XYZService fetchSomeData:^(){
    [_multiColorLoader stopAnimation];
  }];
}

Requirements

  • iOS 7 or higher
  • Automatic Reference Counting (ARC)

Author

Contribution

License

BLMultiColorLoader is released under the MIT license. See the LICENSE file for more info.