Hello I have created a framework and together with framework we add storyboard files. Client has edited storyboards files and he wanted to add custom storyboard inside of his application. He added storyboard in his application with the same name as mine in the framework .I have tried many ways of creating VC in order to get the client’s storyboard instead of mine… I finally finished…
let vc = UIStoryboard.init(name:“Storyboard”, bundle:Bundle.main).instantiateViewController(withIdentifier: “NewIdentifier”)
self .navigationController?.pushViewController(vc!, animated: true )
However, it still can’t find any outlets from mine framework… how can I override storyboard from the framework with custom, provided by client?