Ich arbeite an einer Universal-App und möchte auf die Werte zugreifen, die in der Datei app-info.plist in meinem Code gespeichert sind.
Grund: Ich instanziiere einen UIViewController dynamisch aus einem Storyboard mit:
UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
self = [storyboard instantiateViewControllerWithIdentifier:@"ExampleViewController"];
Jetzt ist es hässlich, den Storyboard-Namen @ "MainStoryboard_iPhone" oben zu haben.
Ich möchte so etwas tun wie:
UIStoryboard* storyboard = [UIStoryboard storyboardWithName:appInfo.mainStoryboardBaseNamePhone bundle:nil];
self = [storyboard instantiateViewControllerWithIdentifier:@"ExampleViewController"];
Dabei kann appInfo möglicherweise ein NSDictionary aller Werte in app-info.plist sein