View Controller ( "" ) , . , , :
if let vc = self.storyboard?.instantiateViewController(withIdentifier: "PopUpTutorial") as? PopUpTutorial {
self.present(vc, animated: true, completion: nil)
}
"" . :
let sb = UIStoryboard(name: "Tutorial", bundle: nil)
if let vc = sb.instantiateViewController(withIdentifier: "PopUpTutorial") as? PopUpTutorial {
self.present(vc, animated: true, completion: nil)
}
xib.