Chris Hannah
My little piece of the internet

Currently Listening

Hiding Extra Separators on a UITableView

When you’re using a UITableView, and there isn’t enough cells to fill up the visible table, it still fills the remaining space with separators. In just one line of code, you can change that to what is probably, the most expected result.

tableView.tableFooterView = UIView()

It’s really that simple.

Check out the full Playground code.

Reply via Email