More than 3 years have passed since last update.
override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
if section == 0 {
return .min
} else {
return super.tableView(tableView, heightForHeaderInSection: section)
}
}
-
return 0
だとうまくいかない。
-
0
より大きい値を返すことで変更できるため、CGFloat.min
を指定することで上端のmarginを消し去れる。
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin