GRProgressView 0.1.1

GRProgressView 0.1.1

测试已测试
语言语言 Obj-CObjective C
许可 MIT
发布时间最新发布2017年10月

Assuner-Lee 维护。



  • 作者
  • Assuner-Lee




示例

要运行示例项目,请克隆repo,然后首先从Example目录运行pod install

要求

安装

GRProgressView可通过CocoaPods获取。要安装它,只需在Podfile中添加以下行

pod "GRProgressView"

效果

演示.gif

接口

与UIProgressView接口基本一致,增加了更丰富的动画接口,可自由设置frame
#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是基于MIT许可的。更多信息请参阅LICENSE文件。