let sb = UIStoryboard(name: "StoryBoardFileName", bundle: nil)
let vc = sb.instantiateViewController(
withIdentifier: SomeViewController.id
) as! SomeViewController
present(vc, animated: true);let sb = UIStoryboard(name: "StoryBoardFileName", bundle: nil)
let vc = sb.instantiateViewController(
withIdentifier: SomeViewController.id
) as! SomeViewController
navigationController?.pushViewController(vc, animated: true)