TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2017 |
Maintained by Assuner-Lee.
To run the example project, clone the repo, and run pod install
from the Example directory first.
GRProgressView is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod "GRProgressView"
#import <UIKit/UIKit.h>
@interface GRProgressView : UIImageView
@property (nonatomic, assign) float progress; // 0.0 .. 1.0, default is 0.0. values outside are pinned.
@property (nonatomic, strong, nullable) UIColor* progressTintColor;
@property (nonatomic, strong, nullable) UIColor* trackTintColor;
@property (nonatomic, strong, nullable) UIImage* progressImage;
@property (nonatomic, strong, nullable) UIImage* trackImage;
- (void)setProgress:(float)progress animateWithDuration:(double)duration delay:(double)delay
- (void)setProgress:(float)progress animateWithDuration:(double)duration;
- (void)setProgress:(float)progress animated:(BOOL)animated;
@end
Assuner-Lee, [email protected]
GRProgressView is available under the MIT license. See the LICENSE file for more info.