swift 加载 storyboard 里的UIViewController

let storyBoard:UIStoryboard! = UIStoryboard(name: "Main", bundle: nil)

let deskVC:DeskViewController! = storyboard!.instantiateViewControllerWithIdentifier("DeskViewController") as DeskViewController

self.navigationController?.pushViewController(deskVC, animated: true)