yoogail105 / KkokkoSwift

꼬리에 꼬리를 무는 swift 개념 정리
28 stars 0 forks source link

# 화면전환: Navigation Controller #31

Open yoogail105 opened 2 years ago

yoogail105 commented 2 years ago

4.4 화면전환: 네비게이션 컨트롤러

🍯 UINavigationController

yoogail105 commented 2 years ago

🍯내비게이션 컨트롤러로 화면 전환하기

1. 화면 이동하기

guard let secondVC = self.storyboard?.instantiateViewController(withIdentifier: "SecondViewController") as? SecondViewController else {
    return
}
self.navigationController?.pushViewController(secondVC, animated: true)

2. 이전 화면으로 복귀하기

_ = self.navigationController?.popViewController(animated: true)
yoogail105 commented 2 years ago

🔖 참고