I want to present a controller to xib file in another storyboard In the meantime, I want to use this xib to use several other storyboard How do i do this?
Please follow this step.
Register Nib
let xibController = NewViewController(nibName: "XIBController", bundle: nil)
Present View Modally
self.presentViewController(xibController, animated: true, completion: nil)