LoginSignup
27
15

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

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