diff options
author | Nicholas Tay <nick@windblume.net> | 2022-03-25 09:52:06 +1100 |
---|---|---|
committer | Nicholas Tay <nick@windblume.net> | 2022-03-25 09:52:06 +1100 |
commit | 07a6eb8325d3b67d998003d3fe5ab34e1a72f106 (patch) | |
tree | d0399896aa38f7deffe5e011e6dd4bf881b25b99 /foray/Scenes | |
parent | fe60f99848498a932d9113f8e516700a836dd1cd (diff) | |
download | forayios-07a6eb8325d3b67d998003d3fe5ab34e1a72f106.tar.gz forayios-07a6eb8325d3b67d998003d3fe5ab34e1a72f106.tar.bz2 forayios-07a6eb8325d3b67d998003d3fe5ab34e1a72f106.zip |
getData -> fetch, try threading, move logic around
Diffstat (limited to 'foray/Scenes')
-rw-r--r-- | foray/Scenes/ForayTableViewController.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/foray/Scenes/ForayTableViewController.swift b/foray/Scenes/ForayTableViewController.swift index ed44139..baa0e6b 100644 --- a/foray/Scenes/ForayTableViewController.swift +++ b/foray/Scenes/ForayTableViewController.swift @@ -45,7 +45,7 @@ class ForayTableViewController: UITableViewController, ForayCoordinated { } func reloadApiData() { - presenter.getData(onComplete: { (data: [PenguinItemViewModel]) in + presenter.fetch(receiver: { (data: [PenguinItemViewModel]) in let groups = Dictionary(grouping: data) { $0.year } self.sections = groups.map { (key, values) in return YearSection(year: key, items: values) |