Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,该应用程序现在必须在线访问 URL 并读取文件夹中的所有文件名并将它们放入应用程序进行解析。如何在 iOS 中实现这一点?我查看了 NSURLConnection 并没有找到任何东西。
这样做的唯一方法是服务器端脚本!
您在寻找的 NSURLConnection 中没有找到什么?
这将是使用 HTTP 下载文件的一种标准方式。
你可以这样做,但它是同步的。
NSData *urlData = [NSData dataWithContentsOfURL:url];