
Create a UITableView with Swift
In quite a few of my tutorials I need to add a section that will explain setting up a UITableView even if the tutorial does not focus on UITableView specifically. I do this
A collection of 11 posts
In quite a few of my tutorials I need to add a section that will explain setting up a UITableView even if the tutorial does not focus on UITableView specifically. I do this
In this quick tutorial I will show you how to change a UITableView's separator color. There are two ways to do this, both are very easy, but there is one that I personally
Reloading an entire table view is not always the best way to update the data in the table view. It might be better to reload specific rows/cells in the table view. In
Dismissing the keyboard in iOS is something that almost every app will need to do at some point if it has a UITextField or UITextView. In this tutorial I will go through a
UITableViews are one of the most commonly used views in iOS development. It is often the case that one will want to create a custom UITableViewCell, so in this tutorial I will show
Adding rows to a UITableView is a common task, whether you are building a todo app, some kind of social network or anything else that needs to display a list of items that