Implement Settings layout.

This commit is contained in:
Maurice Parker
2019-04-25 06:05:49 -05:00
parent 4135ba54fb
commit cabd2b8efc
6 changed files with 425 additions and 64 deletions

View File

@@ -18,6 +18,10 @@ extension UIStoryboard {
return UIStoryboard(name: "Add", bundle: nil)
}
static var settings: UIStoryboard {
return UIStoryboard(name: "Settings", bundle: nil)
}
func instantiateController<T>(ofType type: T.Type = T.self) -> T where T: UIViewController {
let storyboardId = String(describing: type)