Ray Wenderlich Course Part 14 (up to lesson 142)
So, continuing! I'm going to try to get through as much of the next three sections as possible. The next bit is about MVC. I know about that already. So here we go! So Brian mentions that we'll code the project in a sub-optimal way, then do it with MVC. I think I know what this will mean - that the code will repeat itself and not the use the 'model' part of it. Model View Controlle r This is a template solution to help you solve problems. I've used with MVC and actually already created a folder for each of these, then got the files that match up to these. It is a paradigm basically. There is communication between these that means you don't have to re-code/repeat yourself. MVC - First Attempt Refactoring - a posh way of saying rewriting/redoing. let row1Text = "Walk the dog" let row2Text = "Brush my teeth" let row3Text = "Do some coding" let row4Text = "Watch GoT" let row5Text = ...