When my application initially starts up, I am calling [Reachability reachabilityForInternetConnection]. I am essentially calling this right after -application:didFinishLaunchingWithOptions: in the AppDelegate. In iOS8, this is returning a valid connection when I am in airplane mode or have turned off wi-fi. In iOS7, the Reachability class is returning expected results (not connected). Could the issue be related to when I am calling the method?
I was able to work around this issue by implementing Ad-Jās answer here: Easiest way to detect Internet connection on iOS? when detecting that the device is on iOS8.
Has anyone else seen this issue?