LoginSignup
0
1

More than 3 years have passed since last update.

tableviewのサイズを中身のサイズに合わせる。

Posted at

tableviewを設定画面に利用するとき、数個しか要素がないのにtableviewのサイズが大きいままで気持ち良くなかった。

override func viewWillLayoutSubviews() {
    table.frame.size = table.contentSize
}

サイズを中身の大きさに合わせて変更してやればいい感じになった。

わーい!

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