Swift 3: Creating a custom edit button for UITableViewController

My brief was pretty simple for this Swift module: click on a row to view a member’s detail page. Click on the edit button beside a member to update data. Accessing the detail page turned out to be very straight forward using self.tableView.indexPathForSelectedRow!.row to select the relevant member from our entity. My difficulty arose when trying … Continued

Swift 3: Programming a simple stopwatch

For the last while, I have been extending my programming skill set by learning Swift. Swift is a programming language for MacOS, iOS, watchOS and tvOS applications. As both a resource for myself and hopefully a resource for fellow programmers, I thought I might start publishing some of my early scratchings. I emphasise early! Don’t … Continued