Those effin little lines are called ‘separators’ (you can adjust their insets over in the sidebar) and UITableViews add them whenever the list on the screen is too short to fill up all of it. It’s annoying.
The way you get rid of them is by adding an empty view as the footer of the table view:
tableView.tableFooterView = UIView()
That does the trick.