我有一个包含两个故事板的框架:StoryBoard_A.storyboard和StoryBoard_B.storyboard。
我可以到达StoryBoard_A,但不能到达StoryBoard_B

我将框架用作主要项目中的Pod。
在我的框架podspec文件中,我有:

s.source_files = "myFramework/**/*.{swift}"
s.resource_bundles = { 'myFramework' => ['myFramework/**/*.{storyboard,xib,xcassets}'] }


我知道两个情节提要都在myFramework捆绑包中,因为:


在myFramework构建阶段中,我可以在复制捆绑包资源下看到它们都包含在内。
在myFramework.framework中,我可以看到:StoryBoard_A.storyboardc和StoryBoard_B.storyboardc
当我“ pod安装” myFramework作为开发窗格时,我可以在主项目的项目导航器中看到两个故事板


在myFramework中,从ViewController_1中,我从StoryBoard_A.storyboard启动ViewController_a,从StoryBoard_B.storyboard启动ViewController_b。
我使用相同的技术:

let podBundle = Bundle(for: ViewController_1.self)
let bundleURL = podBundle.url(forResource: "myFramework", withExtension: "bundle")
let bundle = Bundle(url: bundleURL!)!


let storyBoard = UIStoryboard(name: "StoryBoard_A", bundle: bundle)
let viewController_a = storyBoard.instantiateViewController(withIdentifier: "ViewController_a_id") as? ViewController_a


但是当我这样做时:

let storyBoard = UIStoryboard(name: "StoryBoard_B", bundle: bundle)
let viewController_b = storyBoard.instantiateViewController(withIdentifier: "ViewController_b_id") as? ViewController_b


该应用程序在第二行中崩溃,并显示以下错误:


  ***由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'在捆绑包中找不到名为'StoryBoard_B'的故事板...


我想念什么?

谢谢

最佳答案

右键单击Xco​​de中“产品”下的应用,然后在Finder中进行浏览。只需检查是否存在StoryBoard_B.storyboardc文件。如果不存在文件,则需要解决另一个问题。

如果存在文件,请尝试如下所示进行访问。

let podBundle = Bundle(forClass: ViewController_1.self)
let bundleURL = podBundle.resourceURL?.URLByAppendingPathComponent("myFramework.bundle")
let resourceBundle = Bundle(URL: bundleURL!)

10-08 06:57