I have the following code to determine whether if there is an internet connection or no. This code works fine. How Can I know if I suddenly lost the connection
  var reachability:Reachability?
  reachability = Reachability()
  self.reachability  = Reachability.init()
    if((self.reachability!.connection) != .none)
    {
        print("Internet available")
    }
Does reachability class has a feature that reports if the connection is broken. If there is no way to handle that issue with reachability what is the other option
 
     
     
    