LoginSignup
2
3

More than 5 years have passed since last update.

textFieldを内包した伸縮するcellを作る

Posted at

image.png

↑こういうやつをつくる(テキストを入力していくと下に伸びるcell)

Storyboard+AutoLayoutでUIを組む

image.png

TableViewDelegateを実装

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return UITableViewAutomaticDimension
    }

UITableViewAutomaticDimensionを返すのがポイント

2
3
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
2
3