UITableViewController

In this video tutorial I am going to share with you how to change UITableViewCell separator left side spacing or how to hide table cell separator completely using Xcode and how to do it programmatically using Swift. If you are looking for a way to work with table cell separator programmatically only, below is a quick example. Otherwise, please watch…

Read More UITableViewCell Separator. Hide Separator or Change Left Side Spacing

It’s been several month now since I have published my video course on Udemy about “How to create user Sign in, Sign up, Password reset, Email verification, Push notifications and other vital for our mobile app features with Swift and Parse“. Since then I have received so many messages from students who took the course as well…

Read More Loading user data from another custom Class in Parse with Swift

In this video I demonstrate how to implement a feature that allows users of your mobile app to rearrange table cells. Users will be able to grab the table cell and drag and drop it at a different position in table view. Source code: import UIKitclass MyTableViewController: UITableViewController {var dataHolder:Array = [“One”,”Two”,”Three”] override func viewDidLoad()…

Read More UITableViewController rearrange or reorder table cells example in Swift

In this video I show you how to implement a feature that allows user to delete UITableViewCell. Source code: // // MyTableViewController.swift // MyTableCellDeleteExample import UIKit class MyTableViewController: UITableViewController { var dataHolder:Array = [“One”,”Two”,”Three”] override func viewDidLoad() { super.viewDidLoad() // Uncomment the following line to preserve selection between presentations // self.clearsSelectionOnViewWillAppear = false // Uncomment…

Read More UITableViewController delete table cell example in Swift