Giter VIP home page Giter VIP logo

hzactivityindicatorview's Introduction

#HZActivityIndicatorView A highly customizable drop-in replacement for UIActivityIndicatorView

HZActivityIndicatorView Screenshot

HZActivityIndicatorView has to be compiled with ARC, a branch with classic memory managment might be added soon.

##Usage

HZActivityIndicatorView can be used just like UIActivityIndicatorView and supports the default UIKit styles for activity indicators.

HZActivityIndicatorView *activityIndicator = [[HZActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
[activityIndicator startAnimating];

##Customization

A few extra properties allow you to further customize the activity indicator

// size is automatically calculated using finSize and indicatorRadius,
// so no need to set it.
HZActivityIndicatorView *activityIndicator = 
	[[HZActivityIndicatorView alloc] initWithFrame:CGRectMake(50, 50, 0, 0)];

// set the number of "fins" in our indicator
activityIndicator.steps = 8; 

// size of each fin
activityIndicator.finSize = CGSizeMake(17, 10);

// which corners are round
activityIndicator.roundedCoreners = UIRectCornerAllCorners;

// corner radius of fins
activityIndicator.cornerRadii = CGSizeMake(0, 0);

// radius of the inner circle
activityIndicator.indicatorRadius = 20;

// animation interval
activityIndicator.stepDuration = 0.1;

// indicator color
activityIndicator.color = [UIColor colorWithRed:85.0/255.0 green:0.0 blue:0.0 alpha:1.000];

// animation direction
activityIndicator.direction = HZActivityIndicatorDirectionCounterClockwise;

[activityIndicator startAnimating];

##Known Issues

  • default styles are still a bit off.

###Copyright Copyright 2011 Hezi Cohen. All rights reserved. See LICENSE for more details.

hzactivityindicatorview's People

Contributors

hezi avatar revetkn avatar williamzang avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.