Detect airplane mode on iOS

Try using SCNetworkReachabilityGetFlags (SystemConfiguration framework). If the flags variable handed back is 0 and the return value is YES, airplane mode is turned on.

Check out Apple’s Reachability classes.

Leave a Comment