Reachability change notification should be called only once
问题 I'm using Reachability in my swift project. I had below code in AppDelegate NSNotificationCenter.defaultCenter().addObserver(self, selector: "reachabilityChanged:", name: ReachabilityChangedNotification, object: reachability) reachability.startNotifier() It does call func reachabilityChanged(note: NSNotification) { } But my problem is that, it is being called for all the request. That is, I'm loading images from the server, so when network reachability get's change this is method get's call