---
title: "What is UITableView?"  
description: "What is UITableView?"  
author: "Sunil Singh"  
published: 2015-05-11  
updated: 2020-09-14  
canonical: https://www.mindstick.com/interview/2506/what-is-uitableview  
category: "iphone"  
tags: ["iphone", "ios", "ipad"]  
reading_time: 1 minute  

---

# What is UITableView?

An instance of **UITableView** (or simply, a table view) is a means for displaying and editing hierarchical lists of information.A table view displays a list of items in a single column. UITableView is a subclass of UIScrollView, which allows users to scroll through the table, although UITableView allows vertical scrolling only. The cells comprising the individual items of the table are UITableViewCell objects; UITableView uses these objects to draw the visible rows of the table.

## Answers

### Answer by Sunil Singh

An instance of **UITableView** (or simply, a table view) is a means for displaying and editing hierarchical lists of information.A table view displays a list of items in a single column. UITableView is a subclass of UIScrollView, which allows users to scroll through the table, although UITableView allows vertical scrolling only. The cells comprising the individual items of the table are UITableViewCell objects; UITableView uses these objects to draw the visible rows of the table.


---

Original Source: https://www.mindstick.com/interview/2506/what-is-uitableview

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
