swiftで画面を閉じる時の、書き方メモー。
ViewController使用。

    @IBAction func clickClose(_ sender: Any) {
        //閉じる
        self.dismiss(animated: true, completion: nil)
    }

前は
self.dismissViewControllerAnimated(true, completion: nil)
とか書いてたりしたけど、だんだん書き方が変わってきてるみたい…。

スポンサーリンク