💬
CodeWithChris - 14 Day Beginner Challengeの記憶(L1-L3)
Lesson 1: The Apple Developer Ecosystem
- アプリを作る環境や言語について
- アプリを配信する仕組みについて
Lesson 2: Introduction to Xcode
- 取得方法
- プロジェクト作成方法
- 画面の説明
- サイドナビゲーション
- コードエディター
- プレビュー
- ライブラリー
- プロジェクトファイルの概要(.xcodeproj)
Lesson 3: How to Build User Interfaces
- SwiftUIで画面を作る方法
Lesson 3 Challenge
このテキストボックスを作る。
Text("Hello, world!")
.padding()
.foregroundColor(.white)
.background(Color.green)
.cornerRadius(10.0)
Lesson4以降は分けて投稿します。
Discussion