git clone https://github.com/ronyfadel/GUIActivityIndicatorView.git
- run example app
GUIActivityIndicatorView *activityIndicatorView = [[GUIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
[self.view addSubview:activityIndicatorView];
// To start animating
[activityIndicatorView startAnimating];
// To hide the view when stopped
activityIndicatorView.hidesWhenStopped = YES;
// To stop animating
[activityIndicatorView stopAnimating];
// To check whether the view is animating or not
activityIndicatorView.isAnimating;
Xib and StoryBoard supported
- Rony Fadel
- @ronyfadel
GUIActivityIndicatorView is available under the MIT license. See the LICENSE file for more info.