
UITableViewCell swipe actions with Swift
iOS 11 brought a new way to add custom swipe swipe actions to UITableViewCell's. In this tutorial we will learn how to add those swipe actions to table view cells, as well as
A collection of 4 posts
iOS 11 brought a new way to add custom swipe swipe actions to UITableViewCell's. In this tutorial we will learn how to add those swipe actions to table view cells, as well as
This is one of those annoying default behaviours that iOS has. Below is a one liner that will help you remove the cell highlighting. To remove the table view cell highlight/selection color
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
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