UIStoryboard をどのように識別しますか?
クラスには、作成およびインスタンス化するメソッドがありますが、 @property のようなものが表示されませんname
。例えば
ストーリーボード オブジェクトの取得
+ storyboardWithName:bundle:
ストーリーボード ビュー コントローラーのインスタンス化
– instantiateInitialViewController
– instantiateViewControllerWithIdentifier:
助言がありますか?
====更新
self.storyboard.name
またはのようなものを望んでいました[self.storyboard description]
。
NSLog(@"This Storyboard is: %@", self.storyboard.name);
おそらく、それは意図されたものではありません。