我正在开发通用应用程序,并且想在我的代码中访问存储在app-info.plist文件中的值。
原因:我使用以下示例从故事板动态实例化UIViewController:
UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
self = [storyboard instantiateViewControllerWithIdentifier:@"ExampleViewController"];
现在,上面的故事板名称为@“ MainStoryboard_iPhone”很难看。
我想做类似的事情:
UIStoryboard* storyboard = [UIStoryboard storyboardWithName:appInfo.mainStoryboardBaseNamePhone bundle:nil];
self = [storyboard instantiateViewControllerWithIdentifier:@"ExampleViewController"];
其中appInfo可能是app-info.plist中所有值的NSDictionary