我正在尝试为Label设置动画。我想像下面那样制作动画。
我在Objective-C中使用此ZCAnimatedLabel库(https://github.com/overboming/ZCAnimatedLabel)将其使用pod集成到我的项目中。但是我不知道如何实现这个动画。
编辑
现在,我删除吊舱并创建一个桥接标题,并将UIView放在情节提要中,并将ZCAnimatedLabel作为其类
我应该在ViewController.swift中写什么才能在ViewDidLoad中实现这种效果
最佳答案
我通过pod 'ZCAnimatedLabel'
进行操作,并在桥接头文件中添加#import "ZCAnimatedLabel.h"
将UIView
拖放到场景/ xib中,并按照您想要的方式进行布局。
import ZCAnimatedLabel
在
UIViewController
中添加IBOutlet
,然后在场景/ xib中将UIView class
更改为所需的动画标签类型。对于default
行为,请更改为ZCAnimatedLabel
类并进行动画处理,添加以下代码。self.label.animationDuration = 1 // add animation duration
self.label.animationDelay = 1 // add seconds to delay
self.label.text = "some text"
self.label.startAppearAnimation()
并停止动画
self.label.stopAnimation()
我在
viewWillAppear
中开始动画,在viewWillDisappear
中停止。重要说明:我很快完成了此操作5
关于ios - 如何在Swift 3中实现ZCAnimatedLabel的默认效果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45532066/