I have a grouped UITableView. It has 7 rows. I wanted a transparent cell at the end so that I can give a scroll buffer at the end of the tableView. I tried to add a transparent cell at the end of the tableView but as it is grouped tableView the border color appears. I just need empty space at the end of the tableView. Any efficient way of doing it will be helpful.
I have a grouped UITableView . It has 7 rows. I wanted a transparent
Share
Why don’t you try setting the
contentInsetthatUITableViewinherits fromUIScrollView?Positive bottom inset should add the buffer you need.
20.0might not be a big inset so adjust as you need.Alternatively, you can also try setting the
tableFooterViewproperty ofUITableView.