How can i pop back from storyboard of framework? – Ios swift
let storyboardBundle = Bundle(identifier: "SignUPFramework") let vc = UIStoryboard.init(name: "SignIn", bundle: storyboardBundle).instantiateViewController(withIdentifier: "SignInViewcontroller") as! SignInViewcontroller navigationController?.pushViewController(vc, animated: true) I have navigated to storyboard of framework as above.