Warm tip: This article is reproduced from stackoverflow.com, please click
ios swift uitableview

Insets around section of UITableView

发布于 2020-03-28 23:14:57

Is there a way to give spacing around a section? I know this can be done using UICollectionView. Have implemented all the things using UITableView and UITableViewCells, don't want to move things to UICollectionView.

I am trying to achieve space around the section(all sides) to give a group kind of feel for section(including header, cells and footer views).

Questioner
Kishoretheju
Viewed
38
Saurav 2017-05-04 14:52

There is no straight forward api for this.

  1. Add some space on every side of UI elements which you have added on top of section header view. eg. (10,10,width,height)
  2. Apply same gap for Cell subviews as well.