during the progress of my app I decided to change from using a UIStoryboard to .xib file, and now I get the error:
Could not find a storyboard named \'Main\' in bun
Add these line to your action method
Where "Main" will be same as it as
let storyboard = UIStoryboard.init(name: "Main", bundle: nil)
let secondVc = storyboard.instantiateViewController(withIdentifier: "ControllerName") as! ControllerName
present(secondVc, animated: true, completion: nil)