Hacking with Swift: facing Project 33’s challenges Recap This was truly a huge project and even if some things do not work as intended (and, sincerely, the teaching material was not thorough enough on the CloudKit dashboard…) I still learned a lot of things. Would I be able to reproduce this project alone blindfolded? AbsolutelyContinue reading “Learning Swift — Day 145 to 147”
Tag Archives: Challenge
Learning Swift — Days 134 to 135
Hacking with Swift — Learning Project 31 After a good pause where I feel I have almost forgotten everything, it is time to go on and finish this book, before going back, reviewing it all and creating my coding snippets library so that, when my memory will fail, and it will fail, I will knowContinue reading “Learning Swift — Days 134 to 135”
Learning Swift — Days 125-127
Hacking with Swift — Day 99 — Consolidation Day X Applying MVC to the project An MVC Recap The Model is the what or our application (but not how it is displayed). The Controller is how our model is presented to the user (and represents the UI logic) and the view is our controller’s minions!Continue reading “Learning Swift — Days 125-127”
Learning Swift — Days 123-124
Swift Language Reference Day 123: Declarations (cont.) Special Kinds of Parameters: parameters can be ignored, take a variable number of values, and provide default values. An underscore (_) parameter is explicitly ignored and can’t be accessed within the body of the function. A parameter with a base type name followed immediately by three dots (…)Continue reading “Learning Swift — Days 123-124”
Learning Swift — Days 120-122
Swift Language Reference Day 120 part 2 Let’s now delve into the Language Reference. It should not be too long before I can start building apps again! Lexical Structure The lexical structure of Swift describes what sequence of characters form valid tokens of the language. These valid tokens form the lowest-level building blocks of theContinue reading “Learning Swift — Days 120-122”
