你如何识别 UIStoryboard?
该类具有创建和实例化的方法,但我没有看到带有类似name
. 例如
获取故事板对象
+ storyboardWithName:bundle:
实例化 Storyboard 视图控制器
– instantiateInitialViewController
– instantiateViewControllerWithIdentifier:
有什么建议么?
==== 更新
我希望有类似self.storyboard.name
or的东西[self.storyboard description]
,例如:
NSLog(@"This Storyboard is: %@", self.storyboard.name);
也许这不是注定的。