Xcodeに少し問題があります。既存のプロジェクトから、静的ライブラリ(ソースコード付き)と* .bundle(ストーリーボードとストーリーボードで使用される画像のみが含まれています)を派生させました。2番目のプロジェクトでは、ライブラリ(正しく機能します)とバンドル(ビルドフェーズのコピーバンドルリソースに* .bundleがあります)をリンクしました。ストーリーボードを読み込もうとすると、画像は読み込まれません。ストーリーボードと呼ぶコードがあります。
UIStoryboard *story=[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle bundleWithIdentifier:@"MYCOMPANY.BUNDLE1"]];
MyViewController *libViewContr= [story instantiateInitialViewController];
libViewContr.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentViewController:libViewContr animated:YES completion:nil ];
みなさん、ありがとうございました。