Member-only story

Space UITableViewCells in a UITableView

Put gaps between!

Steven Curtis
5 min readMay 30, 2023
Photo by Alex Radelich on Unsplash

Before we start

Difficulty: Beginner | Easy | Normal | Challenging

This article has been developed using Xcode 12.2, and Swift 5.3

Prerequisites

This article is based on the [UITableView Programmatic Example](), and builds on that (although the code is given in this article

I usually remove the storyboard using this technique

Keywords and Terminology

Row: The content in a UITableview is ordered into rows

Section: A grouping of rows in a UITableView

UITableView: A view that presents data using rows arranged in a single column

UITableViewCell: The visual representation of a single row in a table view

This project

Background

Before we look at how to put spaces in between UITableViewCells, let us look at some of the background of UITableView.

When we use a UITableView the view is made up of UITableViewCells

--

--

Responses (1)