Essayer de voir si un UIViewController ou UIView peut identifier son ID Storyboard. Donc j'espérais :
UIViewController *aViewController;
NSString *storyboardID = aViewController.storyboard.id; //not an actual property
ou :
NSString *storyboardID = [aViewController.storyboard valueForKey:@"storyboardId"]; //also not a working call
Mais aucune joie et je n'ai pas trouvé de solution similaire en ligne. Quelqu'un sait-il si cela est possible ?
1 votes
À titre d'information, vous pouvez utiliser '[aViewController.storyboard valueForKey:@"name"];'. Les autres réponses sont cependant meilleures.
0 votes
C'est
storyboardIdentifier
.0 votes
@Andy où est storyboardIdentifier ?
0 votes
@ArgaPK il y avait une propriété privée appelée
storyboardIdentifier
il y a longtemps. Je n'ai aucune idée s'il est encore disponible, mais vous pouvez essayer de l'interroger avecvalueForKey
.