Reputation:
I am using table view in a scroll.
when I scroll this tableview
then tableView show extra space after cell in tableview .
light blue color is tableViewCcell
and green color tableview
background color
How to remove blank space in tableview
?
Upvotes: 0
Views: 102
Reputation: 18581
Set the frame of the tableView footer:
import Foundation
import UIKit
let t = UITableView()
t.tableFooterView = UIView(frame: CGRect.zero)
Upvotes: 2