【发布时间】:2022-01-28 15:02:27
【问题描述】:
我们尝试在 iOS 应用中实现 Lottie 动画。我们添加了一个 json 文件,该文件在 android 和 web 中运行良好,但在 iOS 中不可用,即标题是不可见的,并且背景上出现了额外的行。这是sn-p用来播放Lottie动画的代码:
animationView = .init(name: "experts") // json file name
animationView?.frame = view.bounds
animationView?.contentMode = .scaleAspectFill
animationView?.loopMode = .playOnce
animationView?.animationSpeed = 0.5
view.addSubview(animationView!)
animationView?.play { (finished) in
// animation is finished
}
Lottie iOS 版本 - 3.3.0 Xcode 版本 - 12.4 iOS 版本 - 12.5/15.3
【问题讨论】:
-
可以分享一下目前的动画和期待吗?