In My Project, there is one framework project and this framework project has images in the assets catalog..
I want to use theses images using the storyboard of my main project.
I can use the images in class files by defining the bundle of the framework like this,
myImageView.image = UIImage(named: "img1", in: Bundle.init(identifier: "com.abc"), compatibleWith: nil)
but not in the storyboard. so Can I use it in storyboard or I have to go using code only ?