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.
私は groupon のような ios アプリを実行しています。そこでは、バックグラウンドでダウンロードされた NSData を使用して画像を作成しています
[NSData dataWithContentsOfURL:myURL]
私のtableViewで。しかし、グルーポンよりも比較的遅いです。高速化するために実装できるすべてのテクニック。また、ダウンロード後に実装できるキャッシュ技術/フレームワークはありますか?
AFNetworkingをお試しください。それはあなたの生活を楽にするUIImageViewのカテゴリを提供します。
#import "UIImageView+AFNetworking" ..... [imageView setImageWithURL:[NSURL URLWithString:@"theImageURL"]];