Hi I need to navigate from swift class to objective c class then I got error as
"Presenting view controllers on detached view controllers is discouraged " and displayed blank screen.
I added code to navigate as follows:
var captureViewCon = CaptureViewController(nibName: "CaptureViewController", bundle: nil)
self.presentViewController(captureViewCon, animated: true, completion: nil)
Please help me. what I did wrong?