Created
February 6, 2020 06:57
-
-
Save wotjd/57ad6b848c0b8d749d6e11ec7377fa9d to your computer and use it in GitHub Desktop.
Revisions
-
wotjd created this gist
Feb 6, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ class ParentViewController: UIViewController { let button: UIButton() ... func onTapButton() { let popupVC = PopupViewController() popupVC.onDoneBlock = { [weak self] in self?.moveToNextView() } } func moveToNextView() { ... } } class PopupViewController: UIViewController { let closeButton: UIButton() var onDoneBlock: (() -> Void)? = nil func onTapButton() { self.dismiss(true, completion: self.onDoneBlock) } }