28
15

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.

アコーディオンメニューを例にUITableViewRowAnimationの動きを見る

Posted at

意外とUITableViewRowAnimationの動きをすぐ見られる記事がなかったので、アコーディオンメニューに各アニメーションを割り当てた時の動きを紹介します。

参考までに、コードはここに置いています。
https://github.com/akatsuki174/AccordionMenuSample

セクションヘッダー(1, 2とかの部分)をタップした時に次のようなコードを実行することでアニメーションを発生させています。

tableView.beginUpdates()
tableView.reloadSections([section], with: .fade)
tableView.endUpdates()

.fade

.right

.left

.top

.bottom

.none

アニメーションなしという意味ではなく、デフォルトのアニメーションが走ります。

.middle

.automatic

28
15
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
28
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?