Create, open and close ViewContoller
//CLOSE VIEWCONTOLLER
self.dismissViewControllerAnimated(true, completion: nil)
//PRESENT VIEW CONTROLLER
let vc = storyboard!.instantiateViewControllerWithIdentifier("UserSetupController") as! UserSetupController
self.presentViewController(vc, animated: false, completion: nil)