Skip to content

Instantly share code, notes, and snippets.

@popcornomnom
Last active March 29, 2022 06:38
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save popcornomnom/aa06d98f8d9834101a634f358e524660 to your computer and use it in GitHub Desktop.
import Foundation
import Reachability
//Reachability
//declare this property where it won't go out of scope relative to your listener
fileprivate var reachability: Reachability!
protocol ReachabilityActionDelegate {
func reachabilityChanged(_ isReachable: Bool)
}
protocol ReachabilityObserverDelegate: class, ReachabilityActionDelegate {
func addReachabilityObserver() throws
func removeReachabilityObserver()
}
// Declaring default implementation of adding/removing observer
extension ReachabilityObserverDelegate {
/** Subscribe on reachability changing */
func addReachabilityObserver() throws {
reachability = try Reachability()
reachability.whenReachable = { [weak self] reachability in
self?.reachabilityChanged(true)
}
reachability.whenUnreachable = { [weak self] reachability in
self?.reachabilityChanged(false)
}
try reachability.startNotifier()
}
/** Unsubscribe */
func removeReachabilityObserver() {
reachability.stopNotifier()
reachability = nil
}
}
@NerfBro
Copy link

NerfBro commented Oct 5, 2019

What does "EventsManager.shared.removeListener(self)" do ?

@popcornomnom
Copy link
Author

@NerfBro, oops, this shouldn't be here :)
I updated the gist

@rustam-773
Copy link

can you show how to do this with more details?

@popcornomnom
Copy link
Author

@rustam-773, you can see how to use the code above here. ☺️
ReachabilityHandler observes for Internet connection changes after calling addReachabilityObserver()

Details article

@surajkumarmandal
Copy link

reachability = Reachability() in line number 23 showing error "Call can throw, but it is not marked with 'try' and the error is not handled" in swift 5.

@popcornomnom
Copy link
Author

@ surajkumarmandal thanks for the help, I have updated gist for Swift 5

@devsarveshpatel
Copy link

How i can use this please comment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment