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 下载要在我的 OS X 应用程序中显示的图像。当我使用一个使用 NSURLRequest 和 NSURLConnection 来获取文件的库时,但图像有时很重,并且视图会延迟几秒钟来加载。
在 iOS 中,有一些库可以从本地缓存中加载图像,并且该过程是即时的。在 OS X 中是否有一些库或方法可以做到这一点?
看看AFNetworking。
它在UIImageView上有一个类别,应该可以满足您的需要。
它也是一个很好的 HTTP 库。