Last active
March 29, 2022 06:38
-
-
Save popcornomnom/aa06d98f8d9834101a634f358e524660 to your computer and use it in GitHub Desktop.
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
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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How i can use this please comment