Id -> ID renaming.

This commit is contained in:
Brent Simmons
2024-04-07 16:09:23 -07:00
parent c62e3293a6
commit 53215c1f80
70 changed files with 535 additions and 535 deletions

View File

@@ -34,9 +34,9 @@ extension UIStoryboard {
func instantiateController<T>(ofType type: T.Type = T.self) -> T where T: UIViewController {
let storyboardId = String(describing: type)
guard let viewController = instantiateViewController(withIdentifier: storyboardId) as? T else {
print("Unable to load view with Scene Identifier: \(storyboardId)")
let storyboardID = String(describing: type)
guard let viewController = instantiateViewController(withIdentifier: storyboardID) as? T else {
print("Unable to load view with Scene Identifier: \(storyboardID)")
fatalError()
}