TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Klaas Pieter Annema.
A UIStoryboard convenience category offering a standard way of naming components in UIStoryboards.
Add the following to your Podfile:
pod "KPAStoryboardConvenience"
Set the name of your default storyboard using setMainStoryboardName:
Now access your storyboard anywhere in your app using mainStoryboard
.
Instantiate your view controllers using:
[[UIStoryboard mainStoryboard] instantiateViewControllerForClass:[MyViewController class]];
You can also directly access the identifier for view controllers and segues:
+ (NSString *)storyboardIdentifierForClass:(Class)theClass;
+ (NSString *)segueIdentifierForClass:(Class)theClass;
All usage is documented in the Spec.