How to handle reachability in iOS
Issue #209 Here are what I learn about reachability handling in iOS, aka checking for internet connection. Hope you will find it useful, too. This post starts with techniques from Objective age, but many of the concepts still hold true The naive way Some API you already know in UIKit can be used for checking internet connection. Most of them are synchronous code, so you ’d better call them in a background thread...