I\'m trying to create a Pod using CocoaPods and I want to bundle a \"Demo\" Storyboard that I can reference to from the Main Storyboard from my example application. The problem
To reference storyboard using cocoapods, you should set in the Bundle section, the bundle identifier of the pod, like the picture below:
And in your podspec file, you should add the reference of your storyboard (as resource and not bundle)
s.resource = 'MyPod/MyStoryboardName.storyboard'
After the pod update, everything will work as expected
Hope that helps