Add empty (blank) space under (in the end of) UITableView

Tung Fam

My app has the UITableView which have variable quantity of cells inside. How can I add empty (blank) space with certain height under the UITableView? Or in the very end of UITableView? So that after the very last cell there will be more blank space.

Daniel Sumara

Make content inset on your table view:

let insets = UIEdgeInsets(top: 0, left: 0, bottom: 100, right: 0)
self.tableView.contentInset = insets

That will leave some blank space under the table view after you scroll to the last cell.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Is it possible to add blank space to the end of a tableview

From Dev

attempting to add cost from the end of a line but only getting a blank space

From Dev

Empty space at the end of page

From Dev

StringLengthAttribute MVC Blank Space at end

From Dev

StringLengthAttribute MVC Blank Space at end

From Dev

Blank empty space on my website

From Dev

Weird Empty Space in the bottom of the UITableView

From Dev

How to set UITableView background for blank space?

From Dev

How to set UITableView background for blank space?

From Dev

Add space to the end of the RecyclerView

From Dev

Magento Homepage blank space under main slider

From Dev

SQL fields with blank space at end of fields

From Dev

SQL fields with blank space at end of fields

From Dev

Unwanted blank space generated at the end of page

From Dev

Remove blank space below empty button

From Java

Remove empty space before cells in UITableView

From Dev

Empty white space above UITableView inside a UIView

From Dev

Empty space at the bottom of UITableView after adding UISearchBar

From Dev

Empty space at the bottom of UITableView after adding UISearchBar

From Dev

Strange empty space under ListBox control

From Dev

iOS8 UITableView with autolayout has a blank space above cells

From Dev

Add hypen to file if there in a blank space in a certain position

From Dev

How to erase the empty space at the end of a WordSpace page

From Dev

Add text under table sections in UITableView

From Dev

Add text under table sections in UITableView

From Dev

How to add a white view under cell in to the UITableView?

From Dev

Eclipse formatter : add blank line at the end of the class

From Dev

Blank space/gap under navigation bar only on iPad view?

From Dev

How to make last row of uitableview fill the empty space

Related Related

  1. 1

    Is it possible to add blank space to the end of a tableview

  2. 2

    attempting to add cost from the end of a line but only getting a blank space

  3. 3

    Empty space at the end of page

  4. 4

    StringLengthAttribute MVC Blank Space at end

  5. 5

    StringLengthAttribute MVC Blank Space at end

  6. 6

    Blank empty space on my website

  7. 7

    Weird Empty Space in the bottom of the UITableView

  8. 8

    How to set UITableView background for blank space?

  9. 9

    How to set UITableView background for blank space?

  10. 10

    Add space to the end of the RecyclerView

  11. 11

    Magento Homepage blank space under main slider

  12. 12

    SQL fields with blank space at end of fields

  13. 13

    SQL fields with blank space at end of fields

  14. 14

    Unwanted blank space generated at the end of page

  15. 15

    Remove blank space below empty button

  16. 16

    Remove empty space before cells in UITableView

  17. 17

    Empty white space above UITableView inside a UIView

  18. 18

    Empty space at the bottom of UITableView after adding UISearchBar

  19. 19

    Empty space at the bottom of UITableView after adding UISearchBar

  20. 20

    Strange empty space under ListBox control

  21. 21

    iOS8 UITableView with autolayout has a blank space above cells

  22. 22

    Add hypen to file if there in a blank space in a certain position

  23. 23

    How to erase the empty space at the end of a WordSpace page

  24. 24

    Add text under table sections in UITableView

  25. 25

    Add text under table sections in UITableView

  26. 26

    How to add a white view under cell in to the UITableView?

  27. 27

    Eclipse formatter : add blank line at the end of the class

  28. 28

    Blank space/gap under navigation bar only on iPad view?

  29. 29

    How to make last row of uitableview fill the empty space

HotTag

Archive