I have an Objective-C based cocoa pod framework. This framework has a class with XIP view controller. I want to access this controller from a Swift based project. The below code is Objective-C code. I need to use it in a Swift based project.
ViewController * viewController = [[ViewController alloc] initWithNibName:@“VController” bundle:nil];
viewController.delegate = self;
viewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[vc presentViewController: viewController animated:true completion:nil];




