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