Es wird versucht festzustellen, ob ein UIViewController oder UIView seine Storyboard-ID identifizieren kann. Also hoffte auf:
UIViewController *aViewController;
NSString *storyboardID = aViewController.storyboard.id; //not an actual property
oder:
NSString *storyboardID = [aViewController.storyboard valueForKey:@"storyboardId"]; //also not a working call
Aber keine Freude und konnte online keine ähnliche Lösung finden. Weiß jemand, ob das überhaupt möglich ist?