• 100 Days of SwiftUI - Day 9

    Day 9 100 Days of SwiftUI Rewatched the videos from 100 Days of SwiftUI Day 8 and Day 9. Also spent some time reading the Swift documentation for Classes and Structures. Structures are Value Types. A value type is a type whose value is copied when itโ€™s assigned to a...


  • 100 Days of SwiftUI - Day 8

    Day 8 100 Days of SwiftUI All about structs today. I actually watched all of the videos for today and tomorrow because I was learning with each video. Tomorrow I will rewatch all of the videos for structs and take all of the tests. When you want to change a...


  • 100 Days of SwiftUI - Day 7

    Day 7 100 Days of SwiftUI Second day of Closures. Hacking with Swift finished up Closures with more advanced topics. Along with the videos and tests I also used the below resources to help grow my understanding of Closures. I used Swift documentation for Closures. There is more indepth coverage...


  • 100 Days of SwiftUI - Day 6

    Day 6 100 Days of SwiftUI What is a Closure? Straight from the Swift documentation on Closures. Closures are self-contained blocks of functionality that can be passed around and used in your code. Closures in Swift are similar to blocks in C and Objective-C and to lambdas in other programming...


  • 100 Days of SwiftUI - Day 5

    Day 5 100 Days of SwiftUI I learned two new things about functions today during Day 5 of 100 Days of SwiftUI. Variadic functions allow for mutliple parameters to be used in a function without predetermining the number of parameters. For example print() can take any number of parameters and...


  • 100 Days of SwiftUI - Day 4

    Day 4 100 Days of SwiftUI Finished up Day 4. All of about loops. Learned how to label an outside loop so we can exit nested loops at the level that we choose. outerLoop: for i in 1...10 { for j in 1...10 { let product = i * j...


  • 100 Days of SwiftUI - Day 3

    Day 3 100 Days of SwiftUI Day 3 was Operators and Conditions. Ten one minute videos with ten tests to make sure that you understand the content. Like yesterday I will be waiting until later in the day to take the tests.


  • 100 Days of SwiftUI - Day 2

    Day 2 100 Days of SwiftUI I made it two days. ๐Ÿ˜€ Not quite to making it a habit. Today it the lesson was all about complex data types. This is review for me so far but it has been good to take a little bit of time to make...


  • 100 Days of SwiftUI - Day 1

    Day 1 100 Days of SwiftUI Today marks the 100 days until the end of the year. This will be the journal of my adventure. While I have some experience with Swift and iOS development I believe that following the 100 Days of SwiftUI will provide a good review of...


  • The Adventure Begins

    The Adventure Begins This will be my little corner of the internet to chronicle my journey. At first I will be using this blog to talk about the last 100 days of 2019 while I follow Paul Hudsons 100 Days of SwiftUI. If you are looking to join the 100...