日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

轻量级UIImageView分类缓存 库 AsyncImageView 使用

發布時間:2025/4/5 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 轻量级UIImageView分类缓存 库 AsyncImageView 使用 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

輕量級UIImageView分類緩存 庫 AsyncImageView 使用

一:

  • AsyncImageView 主頁:https://github.com/nicklockwood/AsyncImageView
  • 只包含了一個 .h 一個 .m文件
  • 兼容 iOS 5.0及以上,以及ARC

二:使用

? ?主要演示結合UITableview的使用

? ? demo代碼:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {static NSString *CellIdentifier = @"Cell";UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];if (cell == nil){//create new cellcell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];//common settingscell.selectionStyle = UITableViewCellSelectionStyleNone;cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;cell.imageView.contentMode = UIViewContentModeScaleAspectFill;cell.imageView.frame = CGRectMake(0.0f, 0.0f, 44.0f, 44.0f);cell.imageView.clipsToBounds = YES;}else{//cancel loading previous image for cell [[AsyncImageLoader sharedLoader] cancelLoadingImagesForTarget:cell.imageView];}//set placeholder image or cell won't update when image is loadedcell.imageView.image = [UIImage imageNamed:@"Placeholder.png"];//load the imagecell.imageView.imageURL = self.imageURLs[(NSUInteger)indexPath.row];//display image pathcell.textLabel.text = [[(NSURL *)self.imageURLs[(NSUInteger)indexPath.row] path] lastPathComponent];return cell; } View Code

?

? ? ?demo 代碼:

??

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {static NSString *CellIdentifier = @"Cell";#define IMAGE_VIEW_TAG 99UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];if (cell == nil){//create new cellcell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];//add AsyncImageView to cellAsyncImageView *imageView = [[AsyncImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 44.0f, 44.0f)];imageView.contentMode = UIViewContentModeScaleAspectFill;imageView.clipsToBounds = YES;imageView.tag = IMAGE_VIEW_TAG;[cell addSubview:imageView];//common settingscell.selectionStyle = UITableViewCellSelectionStyleNone;cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;cell.indentationWidth = 44.0f;cell.indentationLevel = 1;}//get image viewAsyncImageView *imageView = (AsyncImageView *)[cell viewWithTag:IMAGE_VIEW_TAG];//cancel loading previous image for cell [[AsyncImageLoader sharedLoader] cancelLoadingImagesForTarget:imageView];//load the imageimageView.imageURL = [_imageURLs objectAtIndex:indexPath.row];//display image pathcell.textLabel.text = [[[_imageURLs objectAtIndex:indexPath.row] path] lastPathComponent];return cell; } View Code

?

三:可用api

??

@interface AsyncImageLoader : NSObject+ (AsyncImageLoader *)sharedLoader; + (NSCache *)defaultCache;@property (nonatomic, strong) NSCache *cache; @property (nonatomic, assign) NSUInteger concurrentLoads; @property (nonatomic, assign) NSTimeInterval loadingTimeout;- (void)loadImageWithURL:(NSURL *)URL target:(id)target success:(SEL)success failure:(SEL)failure; - (void)loadImageWithURL:(NSURL *)URL target:(id)target action:(SEL)action; - (void)loadImageWithURL:(NSURL *)URL; - (void)cancelLoadingURL:(NSURL *)URL target:(id)target action:(SEL)action; - (void)cancelLoadingURL:(NSURL *)URL target:(id)target; - (void)cancelLoadingURL:(NSURL *)URL; - (void)cancelLoadingImagesForTarget:(id)target action:(SEL)action; - (void)cancelLoadingImagesForTarget:(id)target; - (NSURL *)URLForTarget:(id)target action:(SEL)action; - (NSURL *)URLForTarget:(id)target;@end@interface UIImageView(AsyncImageView)@property (nonatomic, strong) NSURL *imageURL;@end@interface AsyncImageView : UIImageView@property (nonatomic, assign) BOOL showActivityIndicator; @property (nonatomic, assign) UIActivityIndicatorViewStyle activityIndicatorStyle; @property (nonatomic, assign) NSTimeInterval crossfadeDuration;@end View Code

?

?

總結

以上是生活随笔為你收集整理的轻量级UIImageView分类缓存 库 AsyncImageView 使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。