你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS_第3方類庫SDWebImage

iOS_第3方類庫SDWebImage

編輯:IOS開發綜合

1,將下載好的第3方類庫SDWebImage源碼包加入到工程

2,進入工程的Build Phases,將源碼包裡面的所有.m文件全部添加到工程

3,導入第3方類庫依賴的兩個系統自帶的框架:MapKit.framework、ImageIO.framework

4,添加第3方類庫的主頭文件"UIImageView+WebCache.h"



代碼使用片段:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    static NSString *cellID = @"Beyond";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        // 如果池中沒取到,則重新生成一個cell
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID];
    }
    // 設置cell中獨一無二的內容
    Status *s = _statuses[indexPath.row];
    cell.textLabel.text = s.text;
    cell.detailTextLabel.text = s.user.screenName;
    cell.textLabel.numberOfLines = 0;
    // 重要~使用第3方框架 SDWebImage,緩存策略:失敗再請求,磁盤緩存,scrollView滾動時暫停下載圖片
    [cell.imageView setImageWithURL:[NSURL URLWithString:s.user.profileImageUrl] placeholderImage:[UIImage imageNamed:@"avatar_default.png"] options:SDWebImageLowPriority | SDWebImageRefreshCached | SDWebImageRetryFailed];
    // 返回cell
    return cell;
}

關鍵代碼,緩存策略:

失敗再請求:SDWebImageRetryFailed

磁盤緩存:SDWebImageRefreshCached

scrollView滾動時暫停下載圖片:SDWebImageLowPriority


[cell.imageViewsetImageWithURL:[NSURLURLWithString:s.user.profileImageUrl]placeholderImage:[UIImageimageNamed:@"avatar_default.png"]options:SDWebImageLowPriority |SDWebImageRefreshCached |SDWebImageRetryFailed];


















  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved