If you are already using Alamofire for all the RESTful Api, here is what you can benifit from that.
You can add following class to your app, and call MNNetworkUtils.main.isConnected()
to get a boolean on whether its connected or not.
#import Alamofire
class MNNetworkUtils {
static let main = MNNetworkUtils()
init() {
manager = NetworkReachabilityManager(host: "google.com")
listenForReachability()
}
private let manager: NetworkReachabilityManager?
private var reachable: Bool = false
private func listenForReachability() {
self.manager?.listener = { [unowned self] status in
switch status {
case .notReachable:
self.reachable = false
case .reachable(_), .unknown:
self.reachable = true
}
}
self.manager?.startListening()
}
func isConnected() -> Bool {
return reachable
}
}
This is a singleton class. Every time, when user connect or disconnect the network, it will override self.reachable
to true/false correctly, because we start listening for the NetworkReachabilityManager
on singleton initialization.
Also in order to monitor reachability, you need to provide a host, currently I am using google.com
feel free to change to any other hosts or one of yours if needed.