반응형
Apple Developer
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)
popViewController
이전 화면으로 돌아가기, 뒤로가기
self.navigationController?.popViewController(animated: true)
popToRootViewController
rootViewController로 돌아가기
self.navigationController?.popToRootViewController(animated: true)
728x90
반응형
'초보 iOS 개발자의 일상 > 개발 업무' 카테고리의 다른 글
[Swift iOS] Custom Font 추가 (0) | 2021.05.04 |
---|---|
[Swift iOS] create barcode from string 바코드 생성 [code128, EAN13] using CIFilter (1) | 2021.04.30 |
[Swift iOS] Alamofire 사용하여 Rest API 호출하기 Get / Post (0) | 2021.04.26 |
[Swift iOS] Brother Print SDK 프린트 연결 및 라벨 인쇄하기 (0) | 2021.04.23 |
[Swift iOS] Core Bluetooth 블루투스 연결 (0) | 2021.04.23 |