In a Single View Application, Inside the storyboard if I've multiple view controllers with different classes assigned to them,
How can I access all of them inside AppDelegate while still know what kind (Class) of ViewController is this?
for instance root view controller I can access
BlackTimer *vc = (BlackTimer *)_window.rootViewController;
how about the other sibling view controllers?