UITableView is a class used for displaying and editing lists of information on iOS. A table view displays 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.
UITableView
is a class used for displaying and editing hierarchical lists on iOS (ios) and watchOS (watch-os). It uses an efficient architecture that reuses existing UITableViewCell
objects while they scroll offscreen, improving memory usage and performance during fast scrolling.