ZZCountingLabel.h 406 B

123456789101112131415161718
  1. //
  2. // ZZCountingLabel.h
  3. // 动画测试
  4. //
  5. // Created by 周兴 on 2017/6/29.
  6. // Copyright © 2017年 周兴. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ZZCountingLabel : UILabel
  10. @property (nonatomic, assign) CGFloat duration;
  11. - (void)countingFrom:(CGFloat)fromValue to:(CGFloat)toValue;
  12. - (void)countingFrom:(CGFloat)fromValue to:(CGFloat)toValue duration:(CGFloat)duration;
  13. @end