下記のview(nextview)をpresentで表示して、手動操作で閉じた後で特定の処理(print)を行いたいのですが、
present実行直後に実行されてしまいます。
self.presentのcompletionの使い方を間違っているでしょうか?
特定の処理は遷移先のviewでなく、遷移元のviewに実装したいです。
let storyboard = UIStoryboard(name: "Charge", bundle: nil) if let nextView: TabBarViewController = storyboard.instantiateInitialViewController() as? TabBarViewController { self.present(nextView, animated: true, completion: { print("hello") }) }
回答1件
あなたの回答
tips
プレビュー