Fixed animation slightly
This commit is contained in:
parent
e4738a306e
commit
dba18dd5d7
|
@ -56,12 +56,16 @@ class ViewController: UIViewController, UINavigationControllerDelegate, UIImageP
|
||||||
@IBAction func onSaveButton(_ sender: Any) {
|
@IBAction func onSaveButton(_ sender: Any) {
|
||||||
UIImageWriteToSavedPhotosAlbum(imageView.image!, nil, nil, nil);
|
UIImageWriteToSavedPhotosAlbum(imageView.image!, nil, nil, nil);
|
||||||
|
|
||||||
UIView.animate(withDuration: 0.5, delay:0.0, options:UIViewAnimationOptions.transitionFlipFromTop, animations: {
|
|
||||||
|
self.savedPhotoImageView.alpha = 0
|
||||||
self.savedPhotoImageView.isHidden = false
|
self.savedPhotoImageView.isHidden = false
|
||||||
|
|
||||||
|
UIView.animate(withDuration: 0.3, delay:0.0, options:UIViewAnimationOptions.transitionCrossDissolve, animations: {
|
||||||
|
|
||||||
self.savedPhotoImageView.alpha = 1
|
self.savedPhotoImageView.alpha = 1
|
||||||
|
|
||||||
}, completion: { finished in
|
}, completion: { finished in
|
||||||
UIView.animate(withDuration: 0.5, delay:1, options:UIViewAnimationOptions.transitionCrossDissolve, animations: {
|
UIView.animate(withDuration: 0.3, delay:1, options:UIViewAnimationOptions.transitionCrossDissolve, animations: {
|
||||||
self.savedPhotoImageView.alpha = 0
|
self.savedPhotoImageView.alpha = 0
|
||||||
|
|
||||||
}, completion: { finished in
|
}, completion: { finished in
|
||||||
|
|
Loading…
Reference in New Issue
Block a user