尝试查看UIViewController或UIView是否可以标识其Storyboard ID。因此希望:
UIViewController *aViewController;
NSString *storyboardID = aViewController.storyboard.id; //not an actual property
或者:
NSString *storyboardID = [aViewController.storyboard valueForKey:@"storyboardId"]; //also not a working call
但是没有喜悦,无法在线找到类似的解决方案。有人知道这是否有可能吗?
最佳答案
您可以使用restoreIdentifier,它位于Storyboard标识符的上方,并且是UIViewController属性。