I'm thinking about doing a Framework
to share code between two apps. I would like to include a Storyboard
with a View Controller
that will reference an image inside the App.
For example: In the Framework
, the UIImageView
in the View Controller will reference an image called "Car", however, the image will not be included in the Framework
. The App consuming the Framework
will provide Car.PNG
Question 1: Is this possible?
Question 2: Can I reference the image in Storyboard Interface Builder under attribute inspector? or do I have to do it in code?
Question 3: Do I need to do anything special, i.e. provide the bundle or anything?