LoginSignup
1
0

More than 1 year has passed since last update.

【Swift】Xcode13対応

Posted at

GitHub

ソースコード

テーブルビューのセクションヘッダに余分なpaddingがある

iOS15ではデフォルトでテーブルビューのセクションヘッダの上部に20px程度のpaddingがある。
iOS15未満と同じ外観にするには、sectionHeaderTopPadding を0に指定する。

    private func setTableView() {
        tableView.dataSource = self
        tableView.delegate = self
        tableView.register(UINib(nibName: "BSTableViewCell", bundle: nil), forCellReuseIdentifier: "BSTableViewCell")

        if #available(iOS 15.0, *) {
            tableView.sectionHeaderTopPadding = 0
        }
    }
1
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
1
0