项目作者: bismasaeed00

项目描述 :
It's to show loading animations
高级语言: Objective-C
项目地址: git://github.com/bismasaeed00/BSLoader.git
创建时间: 2017-08-08T05:49:58Z
项目社区:https://github.com/bismasaeed00/BSLoader

开源协议:Other

下载


BSLoader

To show loading animation

alt tag

How to use:

import “BSLoader.h”

To show:

  1. BSLoadingView*loader=[[BSLoader sharedInstance] showLoader];

To hide:

  1. [[BSLoader sharedInstance] hideLoader:loader];

Customize:

To change default circle size, call this line with your value anywhere before showing loader.

  1. [[BSLoader sharedInstance] setDefaultCircleSize:10];

By default, loader will show at the center of screen. But you can specify it’s rectanlge by using this:

  1. BSLoadingView*loader=[[BSLoader sharedInstance] showLoaderInframe:CGRectMake(100, 100, 200, 200)];

You can choose from five different color schemes, call this before displaying loader.

  1. [[BSLoader sharedInstance] setColorScheme:BSColorSchemeFive];