-
-
Save AppleCEO/917ac045ffbce48a9e217ae4788c402e to your computer and use it in GitHub Desktop.
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 characters
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) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment