欢迎光临
我们一直在努力

DNOLabelAnimation

建站超值云服务器,限时71元/月

DNOLabelAnimation

项目介绍:

DNOLabelAnimation

波浪式文字动画

Demo.gif

Type 两种格式 Normal 和 Wave

typedef enum {
    DNOLabelAnimationTypeNormal = 0,
    DNOLabelAnimationTypeWave   = 1
}DNOLabelAnimationType;

创建方式 两种 frame可以设定位置和大小

  • 依据NSString来创建

- (instancetype)initWithFrame:(CGRect)frame text:(NSString *)text;
  • 依据NSAttributedString来创建

- (instancetype)initWithFrame:(CGRect)frame attributedText:(NSAttributedString *)attributedText;

sizeToFit 可以自适应大小

- (void)sizeToFit;

操作动画

  • 开始动画

- (void)startAnimation;
  • 暂停动画

- (void)pauseAnimation;
  • 结束动画

- (void)stopAnimation;

细节处理

  • animationHeight 待处理

  • rate 动画速度

  • kerning 字间距

@property (nonatomic, assign) CGFloat    animationHeight;
@property (nonatomic, assign) NSUInteger rate; // 1 is fastest 10 is slowest, default is 2
@property (nonatomic, assign) CGFloat    kerning;

安装

In your Podfile

pod 'DNOLabelAnimation'

code4app

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » DNOLabelAnimation
分享到: 更多 (0)