作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为标签制作动画。我想要像下面这样的动画。
objective-C 中的 ZCAnimatedLabel 库 ( https://github.com/overboming/ZCAnimatedLabel ) 我使用 pod 将此库集成到我的项目中。但我不知道如何实现这个动画。
现在,我删除我的 Pod 并创建一个桥接 header ,并将 UIView 放入 Storyboard 中,并将 ZCAnimatedLabel 作为其类
我应该在ViewController.swift中写什么才能在ViewDidLoad中实现这种效果
最佳答案
我通过pod'ZCAnimatedLabel'
并在桥接 header 文件中添加#import“ZCAnimatedLabel.h”
将 UIView
拖放到场景/xib 中并按照您想要的方式布局。
import ZCAnimatedLabel
在您的 UIViewController
中,添加 IBOutlet
并在 scene/xib 中将您的 UIView 类
更改为您想要的动画标签类型。对于default
行为,将其更改为ZCAnimatedLabel
class并添加以下代码进行动画处理。
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
中停止。
重要说明:我在 swift 5 中做到了这一点
关于ios - 如何在swift 3中实现ZCAnimatedLabel的默认效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45532066/
我是一名优秀的程序员,十分优秀!