The Language Basics: https://www.youtube.com/watch?v=c8BGQ3CfPBs
Tutorial: multiple view controllers https://www.youtube.com/watch?v=AQXWsDNno8o
Tutorial: custom tables https://www.youtube.com/watch?v=JG_AMY_gSDQ
Tutorial: parsing JSON with swift http://www.ioscreator.com/tutorials/json-parsing-tutorial-ios8-swift
note: Correction in the JSON tutorial:
dateLabel.text = jsonDate timeLabel.text = jsonTime
should be:
self.dateLabel.text = jsonDate self.timeLabel.text = jsonTime