var isDraggingに応じて、とあるview.isHiddenをアニメーションするサンプルコード。
isHiddenだけだとAnimationしないので、alphaをAnimationしています。
var isDragging: Bool = false {
didSet {
if isDragging == true {
UIView.animate(withDuration: 0.5, animations: {
// make trashImageView.isHidden to false,
self.trashImageView.isHidden = !self.isDragging
// then animate the alpha
self.trashImageView.alpha = 1.0
}) { _ in
// do nothing
}
} else {
UIView.animate(withDuration: 0.5, animations: {
// animate the alpha first,
self.trashImageView.alpha = 0
}) { _ in
// then, making isHidden to true
self.trashImageView.isHidden = !self.isDragging
}
}
}
}