0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Swift] [UIKit]コードベースでCustomCellを作成する時の注意点

Posted at

アプリを作成する上でほぼ100%登場するであろうUITableView。カスタムセルで実装する事も多いかと思います。
カスタムセルを作成する場合、

  1. Xibを使用したインターフェースビルダーでUIを構築
  2. コードベースで作成

の2パターンあるかと思います。
xibを使用する場合にはほとんど意識していなかったのですが、コードベースで作成する場合、思わぬところに落とし穴があったので、皆さんに共有したいと思います😄

addSubview(〇〇Label)

コードベースでパーツをsubviewに配置します。
一見、何の問題もないかのように見えます。
実際、この後にレイアウトの設定を行うことで、問題なく表示することが出来ます😆

しかし、僕が実際に経験したことなのですが、

  1. 下方向にスクロール
  2. 上方向スクロールして同じ場所に戻ってくる(セルの再利用が行われる)
  3. セルをタップする

すると、didSelectRowAtが機能しなくなるというバグが起きました😱
何が原因なのかも特定できずに、多くの時間を費やしてしまいました。

[結論] tableViewCellにはcontentViewが存在するため、contentView.addSubview(〇〇Label)とする

The content view of a UITableViewCell object is the default superview for content that the cell displays. If you want to customize cells by simply adding additional views, you should add them to the content view so they position appropriately as the cell transitions in to and out of editing mode.

説明がわかりづらいですが😅追加するだけでセルをカスタムしたい場合はContentViewに追加してね、という事のようです。
セルには編集モードも存在するため、contentViewに追加しないと編集モードの挙動なども意図しない挙動になりそうです。

実際にcontentViewにaddSubviewする事で上記のバグは改善されました。

スクリーンショット 2024-08-20 14.10.45.png

ちなみにCollectionViewCellのドキュメントにはしっかり

Don’t directly add subviews to the cell itself.

と強調してselfに追加しないでね!!と書いてました。(tableViewCellにも書いておいて欲しかった🥲)

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?