编译器将我的LOTAnimationView更改为AnimationView

时间:2019-06-16 07:52:00

标签: swift

import UIKit
import Lottie

class ViewController: UIViewController {

    @IBOutlet weak var containerView: UIView!
    override func viewDidLoad() {
        super.viewDidLoad()
    }

    override func viewDidAppear(_ animated: Bool) {

        let animationView = LOTAnimationView(name: "Like")// Use of unresolved identifier 'LOTAnimationView'; did you mean 'AnimationView'?
        animationView.frame = self.containerView.bounds
        self.containerView.addSubview(animationView)
        animationView.play()
        animationView.loopAnimation = true

    }

}

1 个答案:

答案 0 :(得分:0)

没有df <- strsplit(df$chain, ">") lapply(df, trimws) 。如果使用的是Lottie 3,则每个docsLOTAnimationViewAnimationView存在于版本2中。migration guide解释了重命名的常量。