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.
如何使用 NSConnection 部分下载 JSON 数据?
您能否提供更多有关您要完成的工作的信息?我假设您的意思是您想在完全完成下载之前开始处理 json。您可以查看可以为的委托didReceiveData实现的方法的一件事:NSUrlConnection
didReceiveData
NSUrlConnection
https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html
您可以在数据下降时对其进行解析,并且当您有足够的 JSON 进行解析时,您可以在它完全下载之前就开始处理它。当然,这意味着您可能必须自己解析 json 字符串,而不是使用需要完全形成的 json 字符串的 json 解析器之一。