ユニバーサルアプリに取り組んでいますが、コードの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である可能性があります