LoginSignup
5
4

More than 5 years have passed since last update.

[iOS8~]セルの高さ可変UITableView(コードベース)

Last updated at Posted at 2015-12-16

備忘録。UITableViewCellのcontentViewって存在を知らなかった。

調べてもxibでAutoLayoutしてるケースばかりで詰まった。

やりかた

  1. UITableViewCellcontentViewの大きさをAutoLayoutで設定する。

  2. estimatedRowHeightrowHeightの設定

tableView.estimatedRowHeight = 464//だいたいの高さの見積もり?
tableView.rowHeight = UITableViewAutomaticDimension

※以下のデリゲートメソッドは実装しない

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat

5
4
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
5
4