ios – 错误域= NSURLErrorDomain代码= -1009“Internet连接似乎处于脱机状态.”

当我尝试使用以下代码连接到 soundcloud时:

// Create the request.
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"https://soundcloud.com/api"] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:10.0];

// Create url connection and fire request
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];

当我得到以下错误

Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo={NSUnderlyingError=0x14cfccae0 {Error Domain=kcfErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo={NSErrorFailingURLStringKey=https://soundcloud.com/api,NSErrorFailingURLKey=https://soundcloud.com/api,kcfStreamErrorCodeKey=50,kcfStreamErrorDomainKey=1,NSLocalizedDescription=The Internet connection appears to be offline.}},NSErrorFailingURLStringKey=https://soundcloud.com/api,NSLocalizedDescription=The Internet connection appears to be offline.}

关键是:我在iPhone上运行它,网络是4G.当我通过Wifi使用其他网络时,代码实际上运行良好.

解决方法

原因是我的iPhone上的应用程序关闭了4G网络,不知道我何时以及为什么这样做.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...