Is there a way to segue to the same view controller in Swift? There is an answer for this in Objective-C but I can't convert it to Swift
UPDATE: I was able to push to the same viewcontroller but it immediately errors because it doesn't recognize the objects that were created on the storyboard
let aViewController:myVC = myVC()
self.navigationController!.pushViewController(aViewController, animated:false)
On the Load of the new(same) view controller it errors on the first line:
myText.editable = false;