GFLoadingAnimationView 0.1.4

GFLoadingAnimationView 0.1.4

Maintained by Fanfa.



GFLoadingAnimationView

CI Status Version License Platform

Example

Alt Text

Alt Text

Simple loading animation view to block UI. Easy to use and configurable. You can also use GFLoadingPercentualView to show a loading with percentual status.

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

Installation

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

pod 'GFLoadingAnimationView'

How to use

GFLoadingAnimationView

#import "GFLoadingAnimationView.h"

// show
[GFLoadingAnimationView showLoadingView];

// hide
[GFLoadingAnimationView hideLoadingView];

GFLoadingPercentualView

#import "GFLoadingPercentualView.h"

// show
[GFLoadingPercentualView showLoadingView];

// hide
[GFLoadingPercentualView hideLoadingView];

Settings

GFLoadingAnimationView

//	background
[GFLoadingAnimationView setCircleSize:100];
[GFLoadingAnimationView setCircleBackgroundColor:[UIColor groupTableViewBackgroundColor]];
//	spinner
[GFLoadingAnimationView setSpinnerStrokeColor:[UIColor grayColor]];
[GFLoadingAnimationView setSpinnerStrokeWidth:3];
//	image
[GFLoadingAnimationView setImageSizePerc:0.4];
[GFLoadingAnimationView setImage:[UIImage imageNamed:@"test"]];

GFLoadingPercentualView

//	background
[GFLoadingAnimationView setCircleSize:100];
[GFLoadingAnimationView setCircleBackgroundColor:[UIColor groupTableViewBackgroundColor]];
//	spinner
[GFLoadingAnimationView setSpinnerStrokeColor:[UIColor grayColor]];
[GFLoadingAnimationView setSpinnerStrokeWidth:3];
//	image
[GFLoadingAnimationView setImageSizePerc:0.4];
[GFLoadingAnimationView setImage:[UIImage imageNamed:@"test"]];
//	label
[GFLoadingPercentualView setLabelFontSize:20];
[GFLoadingPercentualView showLabel:false];

Author

Guido Fanfani, [email protected]

License

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