Created
December 3, 2018 08:43
-
-
Save rockname/ad3ac8dc610f9771baa113208539f48b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| class SimpleDataSource: NSObject, UITableViewDataSource { | |
| private var tasks: [Task] = [] | |
| func load(with tasks: [Task]) { | |
| self.tasks = tasks | |
| } | |
| . | |
| . | |
| . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment