Implemented functions for fetching and storing general information and the food menu, including UI for the food menu, TODO: resizing cells for the plan and food menu

This commit is contained in:
Deniz Duezgoeren
2019-07-13 09:48:20 +02:00
parent 92a01a83c7
commit 2f3ce29a4d
10 changed files with 520 additions and 43 deletions
+2 -2
View File
@@ -29,8 +29,8 @@ class PlanViewController : UIViewController, UICollectionViewDataSource, UIColle
}
@objc private func objDoAsync(_ sender: Any) {
df.doAsync() { substitutions in
self.substs = substitutions
df.doAsync(do: "plan") { substitutions in
self.substs = substitutions as! [SubstModel]
self.collectionView.reloadData()
self.refreshControl.endRefreshing()
}