当iOS中没有网络连接时,如何禁用按钮?

最佳答案

查看Apple的可达性代码。

http://developer.apple.com/library/ios/#samplecode/Reachability/Introduction/Intro.html

并像这样使用它:

Reachability *reachabilityInstance = [[Reachability reachabilityForInternetConnection] retain];
[reachabilityInstance startNotifier];
NetworkStatus networkStatus = [reachabilityInstance currentReachabilityStatus];
BOOL connected = (networkStatus==ReachableViaWiFi || networkStatus==ReachableViaWWAN);

关于ios - 没有互联网连接时禁用按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7283309/

10-10 01:56