How do you identify a UIStoryboard?
The class has methods which create and instantiate but I don't see an @property with something like name
. E.g.
Getting a Storyboard Object
+ storyboardWithName:bundle:
Instantiating Storyboard View Controllers
– instantiateInitialViewController
– instantiateViewControllerWithIdentifier:
Any suggestions?
==== UPDATE
I was hoping for something like self.storyboard.name
or [self.storyboard description]
, e.g.:
NSLog(@"This Storyboard is: %@", self.storyboard.name);
Perhaps it's not meant to be.