我有一个有两个故事板的cocoapod。我正在尝试使用以下内容将它们加载到我的项目中:
NSBundle* bundle = [NSBundle bundleWithIdentifier:@"org.cocoapods.FrameworkName"];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"StoryboardName" bundle:bundle];
但我收到错误:
无法在捆绑NSBundle中找到名为“StoryboardName”的故事板
即使它在资源文件夹中:
我错过了什么?如何从资源包中加载故事板?