objective-c Reachability class
问题 I am trying to have my app determine if a user has a internet connection and what type of connection they have. I've imported the SystemConnection framework and the Reachability .h and .m files. In my viewController.h I have the following: #import "Reachability.h" Reachability* reachability; and in vc.m //notification for network status change [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNetworkChange:) name:kReachabilityChangedNotification object:nil]; [