How do you identify a UIStoryboard?
The class has methods that create and create an instance, but I don't see @property with something like name . For instance.
Getting the storyboard object
+ storyboardWithName:bundle:
Creating storyboard dispatcher instances
– instantiateInitialViewController – instantiateViewControllerWithIdentifier:
Any suggestions?
==== UPDATE
I was hoping for something like self.storyboard.name or [self.storyboard description] , for example:
NSLog(@"This Storyboard is: %@", self.storyboard.name);
Perhaps this does not mean.
source share