100 Days of SwiftUI - Day 1 & 2
Day 1 - variables, constants, strings, and numbers
由於之前已在Apple電子書、Appcoda和Ray Wenderlich學了幾個章節,對於Day 1這天的內容已經有認識。var是用作設定變數,let所設定是不變的。strings是字串,必須用" "去包圍住,至於numbers,整數是int,有小數位的是double。int跟double是不能一起計算的。
Day 2 - Booleans, string interpolation, and your first checkpoint
Booleans是用來設定true or false,但目前我不太知道什麼時候會用上Booleans。string interpolation是非常有用的東西,代表要特別處理,例如要將數字加入string中。
First checkpoint順利完成。