user9376925
user9376925

Reputation:

How to remove extra space after cell swift

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

Answers (1)

ielyamani
ielyamani

Reputation: 18581

Set the frame of the tableView footer:

import Foundation
import UIKit

let t = UITableView()

t.tableFooterView = UIView(frame: CGRect.zero)

Upvotes: 2

Related Questions