MSNumberScrollAnimatedView.h 932 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MSNumberScrollAnimatedView.h
  3. // MSNumberScrollAnimatedViewDemo
  4. //
  5. // Created by MrSong on 16/5/20.
  6. // Copyright © 2016年 MrSong. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MSNumberScrollAnimatedView : UIView
  10. // 内容相关
  11. @property (nonatomic, strong) NSNumber *number;
  12. @property (nonatomic, assign) NSUInteger density; // 滚动数字的密度
  13. @property (nonatomic, assign) NSUInteger minLength; // 最小显示长度,不够补零
  14. // 动画相关
  15. @property (nonatomic, assign) NSTimeInterval duration; // 动画总持续时间
  16. @property (nonatomic, assign) NSTimeInterval durationOffset; // 相邻两个数字动画持续时间间隔
  17. @property (nonatomic, assign) BOOL isAscending; // 方向,默认为NO,向下
  18. - (instancetype)initWithVipType:(NSInteger)vipType;
  19. - (void)reloadView;
  20. - (void)startAnimation;
  21. - (void)stopAnimation;
  22. @end