LOTAnimationView をコレクション ビュー セルに追加しようとしましたが、プログラムを実行しても画面に何も表示されません。lottie へのリンクは次のとおりです。コードは次のとおりです。
class Cell: UICollectionViewCell{
var animationView: LOTAnimationView!
override func awakeFromNib() {
super .awakeFromNib()
animationView = LOTAnimationView(name: "Animation")
self.contentView.addSubview(animationView!)
}