Apple Developer UINavigationController : A container view controller that defines a stack-based scheme for navigating hierarchical content. pushViewController xib 파일 사용시 저렇게 nibName을 적어주면 된다. 없으면 nil. 두번째 주석처리한 부분처럼 인자를 쉽게 넘겨줄 수 있다. let vc = ViewController(nibName: "ViewController", bundle: nil) //vc.name = productname self.navigationController?.pushViewController(vc, animated: true) popViewCont..