Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
swift 화면 이동 본문
storyboard 를 사용해서 간단하게 화면이동이 가능하지만, 조건문과 함께 사용할때는 코드로 이동하는 것이 편할때가 있다.
같은 스토리보드내에 있는 다른 뷰로 이동하는 경우
// nextViewController.swift 인 경우
let storyboard: UIStoryboard = self.storyboard!
let nextView = storyboard.instantiateViewController(withIdentifier: "nextViewController")
self.present(nextView, animated: true, completion: nil)
현재와 다른 스토리보드에 있는 뷰로 이동하는 경우
xcode 상에서 is Initial View Controller 에 체크를 해도 되지만,
아래와 같이 name 파라미터에 스토리보드의 이름을 넣어도 된다.
// 파일명이 Next.storyboard 인 경우
let storyboard: UIStoryboard = UIStoryboard(name: "Next", bundle: nil)
let nextView = storyboard.instantiateInitialViewController()
self.present(nextView!, animated: true, completion: nil)
출처: http://geguri.tistory.com/45 [개구리의 IT공간]
출처: http://geguri.tistory.com/45 [개구리의 IT공간]
'IOS > 예제모음' 카테고리의 다른 글
swift 로 몇분전,몇시간전등으로 표기하는 예제 (0) | 2017.05.11 |
---|---|
권한 예제 모음 (0) | 2017.04.25 |
swift 카메라 및 갤러리 접근 코드 소스 (0) | 2017.04.20 |
IOS 멋진 예제 모음 사이트 (0) | 2017.04.17 |
이미지 체인저를 이용한 소스 (0) | 2017.02.11 |