当我尝试使用以下代码连接到
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网络,不知道我何时以及为什么这样做.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。