I have an Objective-C app where I need to load another VC class from within the code. I've managed to accomplish this in another Swift app.
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let controller = storyboard.instantiateViewController(withIdentifier: "OverrideClass")
self.present(controller, animated: true, completion: nil)
I need help creating an identical function for ObjC. It's basically loading the class of the VC with the storyboard identifier mentioned in the code.