-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from brunomunizaf/dev
Expand example app to different screens
- Loading branch information
Showing
20 changed files
with
720 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import UIKit | ||
|
||
/// `FinishedViewController` is a `UIViewController` subclass that manages the | ||
/// interactions and lifecycle events of the `FinishedScreenView` of the app. | ||
final class FinishedViewController: UIViewController { | ||
// MARK: - Properties | ||
|
||
/// A lazy initialized `FinishedScreenView` object | ||
lazy var screenView = FinishedScreenView() | ||
|
||
// MARK: - Lifecycle | ||
|
||
override func loadView() { | ||
view = screenView | ||
} | ||
} |
Oops, something went wrong.