アニメーション中にimage
をimageView
に変更したいと思います。私はimageView
を持っていて、私のアニメーションはこれをimageView
にします。このアニメーションの間に、私はこの写真に新しい写真をロードする必要があります(インターネットからダウンロードした後)。imageView
は、最初の位置に戻ります。この問題を起こさずに新しい画像を読み込むにはどうすればいいですか?UIViewアニメーション中に画像を更新する方法
マイコード:私はあなたのイメージ図が中に配置されていることを推測するつもりだ、私はviewDidAppear
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
UIView.animate(withDuration: 5, delay: 0, options: [.curveEaseOut, .allowAnimatedContent, .allowUserInteraction], animations: { [unowned self] _ in
self.userProfileImageView.center.y = 300
}, completion: nil)
}