3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[iOS] UIViewをアニメーションでフェードアウトさせる

Posted at

#概要
数秒間だけ表示されて消えるようなViewを実装する場合、一瞬で消えるよりもフェードアウトのアニメーションをつけると、より視覚的なUXが高まります。本記事ではViewをフェードアウトさせる簡単なアニメーションを紹介します。

5秒後にViewをフェイドアウトさせるアニメーション
UIView.animate(withDuration: 0.2, delay: 5.0, options: UIViewAnimationOptions.allowUserInteraction, animations: {
    // Viewを見えなくする
    fadeoutView.alpha = 0.05
}) { (completed) in
    // Animationが完了したら親Viewから削除する
    fadeoutView.removeFromSuperview()
}

##補足
alphaを完全に0にするとuser interactionが無効になりタップできなくなるので、上記の例ではあえて0.05に指定しています。特にタップ等の操作が必要のないViewに対しては、alphaを完全に0にしても良いでしょう。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?