What is table view in iOS?
A table view displays a single column of vertically scrolling content, divided into rows and sections. Each row of a table displays a single piece of information related to your app. Sections let you group related rows together. For example, the Contacts app uses a table to display the names of the user's contacts.
How to make a table in Xcode?
Add a table view to your interface. To add a table view to your interface, drag a table view controller ( UITableViewController ) object to your storyboard. Xcode creates a new scene that includes both the view controller and a table view, ready for you to configure and use.