fillerRowHeight
The height for empty rows that fill the table view.
Declaration
var fillerRowHeight: CGFloat { get set }Discussion
Table views with a style of UITableView.Style.plain can display filler rows, empty rows that appear below the last row when there isn’t enough content to fill the table view. Set this property to adjust the height of each filler row:
Set
0.0to not display filler rows. This behavior is the default in iOS 15 and later.Set automaticDimension to display filler rows that use an automatic height, matching the height of the last row in the table view. This behavior is the default in versions of iOS earlier than iOS 15.
Set any other positive value to display filler rows of that specified height.
A table view with a style other than UITableView.Style.plain doesn’t show filler rows, so it ignores any value other than 0.0 for this property.