尝试查看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
但是没有喜悦,无法在线找到类似的解决方案。有谁知道这是否有可能?