4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[iOS]モーダルを閉じる

Last updated at Posted at 2020-11-25

この記事は「[iOS]音速でモーダルを実装する」の続きです。
モーダル開いたらモーダル閉じたいよなぁ?という記事です。

バージョン

Swift 5.3
Xcode 12.1

モーダルを閉じる

モーダルを閉じるにはUIViewControllerのインスタンスメソッドであるdismissを使います。

実装

ファイルの追加

まず、モーダル用のViewControllerを追加します。
image.png
New File...から
image.png
Cocoa Touch Classを選択してNextをクリック
image.png
今回はModalViewControllerという名前にしてファイルを作成します。

ファイルとビューの関連付け

モーダル用のビューとファイルの関連付けを行います。
test.gif

閉じる用のボタンを配置

Modal用のビューにボタンを配置します。
image.png

モーダルを閉じる関数を書く

モーダルを閉じる関数を書きます。

ModalViewController.swift
import UIKit

class ModalViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
    }
    
	@IBAction func closeModal() {
		self.dismiss(animated: true, completion: nil)
	}
}

ボタンと関数を関連付ける

ボタンと関数を関連付けます。

closemodal.gif

完成

完成だ!やった!!!
modaldemo.gif

参考文献

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?