Last active
January 19, 2017 15:07
-
-
Save sauvikatinnofied/54823d81336c987f1fc5ccb787258586 to your computer and use it in GitHub Desktop.
Medium Blog Post Gists
This file contains 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
override func viewWillAppear(_ animated: Bool) { | |
super.viewWillAppear(animated) | |
ReachabilityManager.shared.addListener(listener: self) | |
} | |
override func viewDidDisappear(_ animated: Bool) { | |
super.viewDidDisappear(animated) | |
ReachabilityManager.shared.removeListener(listener: self) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment