Add Account Inspector context menu item for Accounts

This commit is contained in:
Maurice Parker
2019-10-23 19:58:18 -05:00
parent a39aab58e4
commit f0d1cf6239
12 changed files with 542 additions and 426 deletions

View File

@@ -24,6 +24,14 @@ extension UIStoryboard {
return UIStoryboard(name: "Settings", bundle: nil)
}
static var inspector: UIStoryboard {
return UIStoryboard(name: "Inspector", bundle: nil)
}
static var account: UIStoryboard {
return UIStoryboard(name: "Account", bundle: nil)
}
func instantiateController<T>(ofType type: T.Type = T.self) -> T where T: UIViewController {
let storyboardId = String(describing: type)