Lynda Course - Swift 5 Essential Thinking (Part 6)
Here we go! A quick session now. Not sure how long I've got but gonna do a bit. A couple more chapters of this course, then will review what else from Lynda is worth looking at. At some point I need to decide if the subscription is worth it. Start Time - 12:57 6. Classes, Structs and Beyond So I looked at the initial couple of videos last time about value vs reference types. Now the focus is specifically on classes. Classes All this is fine - just a recap - class Adventurer { var name: String var maxHealth: Int var specialMove: String ? init (name: String , maxHP: Int ) { self . name = name self . maxHealth = maxHP } convenience init (name: String ) { self . init (name: ...