Getting this error message:
Presenting view controllers on detached view controllers is discouraged
This is happening because you’re not supposed to perform a segue until viewDidAppear
override func viewDidAppear(animated: Bool) {
performSegueWithIdentifier("OpenThisSegueImmediately", sender: nil)
}