Last active
December 19, 2015 05:09
-
-
Save scottsappen/5901899 to your computer and use it in GitHub Desktop.
Activity indicator made easy in iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *AboutActivityIndicator; | |
@synthesize AboutActivityIndicator = _aboutActivityIndicator; | |
[_aboutActivityIndicator startAnimating]; | |
[_aboutActivityIndicator stopAnimating]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment