Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- PyQt
- Excel
- 라즈베리파이
- port
- MySQL
- pandas
- MS-SQL
- node.js
- PyQt5
- GIT
- IOS
- PER
- 다이어트
- 함수
- sqlite
- swift
- ASP
- mssql
- python
- urllib
- Unity
- 날짜
- 리눅스
- 맛집
- ubuntu
- flutter
- 유니티
- javascript
- Linux
- tensorflow
Archives
아미(아름다운미소)
iOS - Swift4) Present and dismiss modal view controller(모달 뷰 컨트롤러 표시 및 닫기) 본문
랭귀지/SWIFT
iOS - Swift4) Present and dismiss modal view controller(모달 뷰 컨트롤러 표시 및 닫기)
유키공 2018. 6. 2. 20:30Present and dismiss modal view controller
(모달 뷰 컨트롤러 표시 및 닫기)
Swift 4
스토리 보드에 각각에 버튼이있는 두 개의 View Controller(ViewController.swift, SecondViewController.swift)를 만듭니다.
두 번째보기 컨트롤러의 경우 클래스 이름을 SecondViewController로, 스토리 보드 ID는 secondVC로 설정합니다.
import UIKit class ViewController: UIViewController { @IBAction func presentButtonTapped(_ sender: UIButton) { let storyboard = UIStoryboard(name: "Main", bundle: nil) let myModalViewController = storyboard.instantiateViewController(withIdentifier: "secondVC") myModalViewController.modalPresentationStyle = UIModalPresentationStyle.fullScreen myModalViewController.modalTransitionStyle = UIModalTransitionStyle.coverVertical self.present(myModalViewController, animated: true, completion: nil) } }
import UIKit class SecondViewController: UIViewController { @IBAction func dismissButtonTapped(_ sender: UIButton) { self.dismiss(animated: true, completion: nil) } }
'랭귀지 > SWIFT' 카테고리의 다른 글
버튼으로 SWRevealViewController를 관리하는 방법 (0) | 2018.06.10 |
---|---|
SWRevealViewController의 SlideMenuViewController에서 TabBarController 열기 (0) | 2018.06.06 |
스위프트 - navigation에서 back button을 숨기는 방법 (0) | 2018.06.01 |
[iOS] viewDidLoad에서 다른 뷰 컨트롤러로 이동 (0) | 2018.05.31 |
Swift 네비게이션 컨트롤러를 이용한 화면 전환 (0) | 2018.05.30 |
Comments