Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delegateセクションを先に取り組む #27

Merged
merged 3 commits into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/Delegate.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ UITableViewDelegateはProtocolで、Cellが選択されたときの関数が宣
UITableViewはUITableViewDelegateの実装クラスを保持し、必要な時にDelegateの関数を呼び出します。

## 課題
- Delegateパターンを使い、同期APIから天気予報を受け取る
- Delegateパターンを使い、APIから天気予報を受け取る
- ViewControllerに`deinit`を実装し、ログを出力するようにしておく
- ViewControllerを閉じた時に`deinit`が呼ばれることを確認する
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ Session1がレビュー待ちの場合...
# Session
1. [AutoLayout](Documentation/AutoLayout.md)
1. [API](Documentation/API.md)
1. [Lifecycle](Documentation/VC_Lifecycle.md)
1. [Delegate](Documentation/Delegate.md)
1. [Error](Documentation/Error.md)
1. [Json](Documentation/Json.md)
1. [Codable](Documentation/Codable.md)
1. [Lifecycle](Documentation/VC_Lifecycle.md)
1. [NotificationCenter](Documentation/NotificationCenter.md)
1. [UnitTest](Documentation/UnitTest.md)
1. [ThreadBlock](Documentation/ThreadBlock.md)
1. [Delegate](Documentation/Delegate.md)
1. [Closure](Documentation/Closure.md)
1. [Concurrency](Documentation/Concurrency.md)
1. UIKit
Expand Down