(SWIFT) 화면 전환

2019. 4. 25. 16:43iOS

반응형

같은 스토리보드에서 화면 전환하기

let storyboard: UIStoryboard = self.storyboard!

let nextView = storyboard.instantiateViewController(withIdentifier: "nextV")

present(nextView, animated: true, completion: nil)

 

NavigationController의 화면 전환하기

let storyboard: UIStoryboard = self.storyboard!

let nextView = storyboard.instantiateViewController(withIdentifier: "nextV")

let navi = UINavigationController(rootViewController: nextV)

// 애니메이션 설정

// navi.modalTransitionStyle = .coverVertical

present(navi, animated: true, completion: nil)

 

다른 스토리보드 보기로 전환하는 경우

let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)

let nextView = storyboard.instantiateInitialViewController()

present(nextView!, animated: true, completion: nil)

 

[출처 : https://www.todaymart.com/246 ]

반응형

'iOS' 카테고리의 다른 글

(SWIFT) JSON Parse  (0) 2019.04.25
(SWIFT) Toast  (0) 2019.04.25
concerning launch image  (0) 2019.04.24
iOS 런처이미지 사이즈표  (0) 2019.04.24
애플 개발자계정 없이 빌드 및 실행  (0) 2016.10.17