ios開發之UIImageView

來源:互聯網
上載者:User

標籤:

廢話少說,直接進入正題!!!

1、建立一個UIImageView:

建立一個UIImageView對象的幾種方法:

UIImageView *imageView1 = [[UIImageView alloc] init]; 
UIImageView *imageView2 = [[UIImageView alloc] initWithFrame:(CGRect)]; UIImageView *imageView3 = [[UIImageView alloc] initWithImage:(UIImage *)];UIImageView *imageView4 = [[UIImageView alloc] nitWithImage:(UIImage *) highlightedImage:(UIImage *)];UIImageView *imageView5 = [[UIImageView alloc] initWithCoder:(NSCoder *)];

比較常用的是前邊三個。至於第四個,當這個ImageView的highlighted屬性是YES時,顯示的就是參數highlightedImage,一般情況下顯示的是第一個參數UIImage。

2、frame與bounds屬性:

上述建立一個UIImageView的方法中,第二個方法是在建立時就設定位置和大小。

當之後想改變位置時,可以重新設定frame屬性:

imageView.frame = CGRectMake(CGFloat x, CGFloat y, CGFloat width, CGFloat heigth);
imageView.bounds = CGRectMake(CGFloat x, CGFloat y, CGFloat width, CGFloat heigth);

那麼bounds跟frame屬性有什麼區別呢?

frame設定其位置和大小,而bounds只能設定其大小,其參數中的x、y不起作用即便是之前沒有設定frame屬性,控制項最終的位置也不是bounds所設定的參數。bounds實現的是將UIImageView控制項以原來的中心為中心進行縮放。

來看下面的樣本:

imageView.frame = CGRectMake(0, 0, 320, 460);imageView.bounds = CGRectMake(100, 100, 160, 230);

執行之後,這個imageView的位置和大小是(80, 115, 160, 230)。

3、contentMode屬性:

這個屬性是用來設定圖片的顯示方式,如置中、居右,是否縮放等,有以下幾個常量可供設定:

UIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRight

注意以上幾個常量,凡是沒有帶Scale的,當圖片尺寸超過 ImageView尺寸時,只有部分顯示在ImageView中。

UIViewContentModeScaleToFill屬性會導致圖片變形。

UIViewContentModeScaleAspectFit會保證圖片比例不變,而且全部顯示在ImageView中,這意味著ImageView會有部分空白。

UIViewContentModeScaleAspectFill也會證圖片比例不變,但是是填充整個ImageView的,可能只有部分圖片顯示出來。

4、已變更位元置

4.1 直接修改其frame屬性

4.2 修改其center屬性:

imageView.center = CGPointMake(CGFloat x, CGFloat y);

center屬性指的就是這個ImageView的中間點。

4.3 使用transform屬性

imageView.transform = CGAffineTransformMakeTranslation(CGFloat dx, CGFloat dy);

其中dx與dy表示想要往x或者y方向移動多少,而不是移動到多少。

5、旋轉映像

imageView.transform = CGAffineTransformMakeRotation(CGFloat angle);

注意:它是按照順時針方向旋轉的,而且旋轉中心是原始ImageView的中心,也就是center屬性工作表示的位置。

這個方法的參數angle的單位是弧度,而不是我們最常用的度數,所以可以寫一個宏定義:

#define degreesToRadians(x) (M_PI*(x)/180.0)

6、縮放映像

還是使用transform屬性:

imageView.transform = CGAffineTransformMakeScale(CGFloat scale_w, CGFloat scale_h);
其中,CGFloat scale_w與CGFloat scale_h分別表示將原來的寬度和高度縮放到多少倍

7、播放一系列圖片

imageView.animationImages = imagesArray;// 設定所有的圖片在多少秒內播放完畢imageView.animationDuration = [imagesArray count];// 不重複播放多少遍,0表示無數遍imageView.animationRepeatCount = 0;// 開始播放[imageView startAnimating];

8、為圖片添加單擊事件:

imageView.userInteractionEnabled = YES;UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapImageView:)];[imageView addGestureRecognizer:singleTap];

一定要先將userInteractionEnabled置為YES,這樣才能響應單擊事件。

9、其他設定

imageView.hidden = YES或者NO;                                   // 隱藏或者顯示圖片imageView.alpha = (CGFloat) al;                                // 設定透明度imageView.highlightedImage = (UIImage *)hightlightedImage;     // 設定高亮時顯示的圖片imageView.image = (UIImage *)image;                            // 設定正常顯示的圖片[imageView sizeToFit];                                         // 將圖片尺寸調整為與內容圖片相同

10、圖片緩衝(最新版SDWebImage使用)

<1>下載SDWebImage,匯入工程。github託管地址https://github.com/rs/SDWebImage

<2>在需要的地方匯入標頭檔

#import "UIImageView+WebCache.h"

<3>調用sd_setImageWithURL:方法緩衝圖片,注意,這就是新版本的新方法,舊方法是setImageWithURL:。

      1. sd_setImageWithURL:

//圖片緩衝的基本代碼,就是這麼簡單[self.image1 sd_setImageWithURL:imagePath1];

      2. sd_setImageWithURL:  completed:

//用block 可以在圖片載入完成之後做些事情[self.image2 sd_setImageWithURL:imagePath2 completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {                 NSLog(@"這裡可以在圖片載入完成之後做些事情");             }];

      3. sd_setImageWithURL:  placeholderImage:

//給一張預設圖片,先使用預設圖片,當圖片載入完成後再替換[self.image1 sd_setImageWithURL:imagePath1 placeholderImage:[UIImage imageNamed:@"default"]];

      4. sd_setImageWithURL:  placeholderImage:  completed:

//使用預設圖片,而且用block 在完成後做一些事情[self.image1 sd_setImageWithURL:imagePath1 placeholderImage:[UIImage imageNamed:@"default"] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {                 NSLog(@"圖片載入完成後做的事情");             }];

      5. sd_setImageWithURL:  placeholderImage:  options:

//options 選擇方式[self.image1 sd_setImageWithURL:imagePath1 placeholderImage:[UIImage imageNamed:@"default"] options:SDWebImageRetryFailed];

除了帶options選項的方法,其他的方法都是綜合儲存,也就是記憶體緩衝和磁碟緩衝結合的方式,如果你只需要記憶體緩衝,那麼在options這裡選擇SDWebImageCacheMemoryOnly就可以了。

到這裡你已經可以用SDWebimage進行圖片緩衝了(over)

/**************************************************************************************************/

深入瞭解部分

options所有的選項:

     //失敗後重試     SDWebImageRetryFailed = 1 << 0,           //UI互動期間開始下載,導致延遲下載比如UIScrollView減速。     SDWebImageLowPriority = 1 << 1,           //只進行記憶體緩衝     SDWebImageCacheMemoryOnly = 1 << 2,           //這個標誌可以漸進式下載,顯示的映像是逐步在下載     SDWebImageProgressiveDownload = 1 << 3,           //重新整理緩衝     SDWebImageRefreshCached = 1 << 4,           //後台下載     SDWebImageContinueInBackground = 1 << 5,           //NSMutableURLRequest.HTTPShouldHandleCookies = YES;           SDWebImageHandleCookies = 1 << 6,           //允許使用無效的SSL認證     //SDWebImageAllowInvalidSSLCertificates = 1 << 7,           //優先下載     SDWebImageHighPriority = 1 << 8,           //延遲預留位置     SDWebImageDelayPlaceholder = 1 << 9,           //改變動畫形象     SDWebImageTransformAnimatedImage = 1 << 10,

SDWebImage內部實現過程

  1. 入口 setImageWithURL:placeholderImage:options: 會先把 placeholderImage 顯示,然後 SDWebImageManager 根據 URL 開始處理圖片。

  2. 進入 SDWebImageManager-downloadWithURL:delegate:options:userInfo:,交給 SDImageCache 從緩衝尋找圖片是否已經下載 queryDiskCacheForKey:delegate:userInfo:.

  3. 先從記憶體配置圖片緩衝尋找是否有圖片,如果記憶體中已經有圖片緩衝,SDImageCacheDelegate 回調 imageCache:didFindImage:forKey:userInfo: 到 SDWebImageManager。

  4. SDWebImageManagerDelegate 回調 webImageManager:didFinishWithImage: 到 UIImageView+WebCache 等前端展示圖片。

  5. 如果記憶體緩衝中沒有,產生 NSInvocationOperation 添加到隊列開始從硬碟尋找圖片是否已經緩衝。

  6. 根據 URLKey 在硬碟緩衝目錄下嘗試讀取圖片檔案。這一步是在 NSOperation 進行的操作,所以回主線程進行結果回調 notifyDelegate:。

  7. 如果上一操作從硬碟讀取到了圖片,將圖片添加到記憶體緩衝中(如果空閑記憶體過小,會先清空記憶體緩衝)。SDImageCacheDelegate 回調 imageCache:didFindImage:forKey:userInfo:。進而回調展示圖片。

  8. 如果從硬碟緩衝目錄讀取不到圖片,說明所有緩衝都不存在該圖片,需要下載圖片,回調 imageCache:didNotFindImageForKey:userInfo:。

  9. 共用或重建一個下載器 SDWebImageDownloader 開始下載圖片。

  10. 圖片下載由 NSURLConnection 來做,實現相關 delegate 來判斷圖片下載中、下載完成和下載失敗。

  11. connection:didReceiveData: 中利用 ImageIO 做了按圖片下載進度載入效果。

  12. connectionDidFinishLoading: 資料下載完成後交給 SDWebImageDecoder 做圖片解碼處理。

  13. 圖片解碼處理在一個 NSOperationQueue 完成,不會拖慢主線程 UI。如果有需要對下載的圖片進行二次處理,最好也在這裡完成,效率會好很多。

  14. 在主線程 notifyDelegateOnMainThreadWithInfo: 宣告解碼完成,imageDecoder:didFinishDecodingImage:userInfo: 回調給 SDWebImageDownloader。

  15. imageDownloader:didFinishWithImage: 回調給 SDWebImageManager 告知圖片下載完成。

  16. 通知所有的 downloadDelegates 下載完成,回調給需要的地方展示圖片。

  17. 將圖片儲存到 SDImageCache 中,記憶體緩衝和硬碟緩衝同時儲存。寫檔案到硬碟也在以單獨 NSInvocationOperation 完成,避免拖慢主線程。

  18. SDImageCache 在初始化的時候會註冊一些訊息通知,在記憶體警告或退到背景時候清理記憶體配置圖片緩衝,應用結束的時候清理到期圖片。

  19. SDWI 也提供了 UIButton+WebCache 和 MKAnnotationView+WebCache,方便使用。

  20. SDWebImagePrefetcher 可以預先下載圖片,方便後續使用。

從上面流程可以看出,當你調用setImageWithURL:方法的時候,他會自動去給你幹這麼多事,當你需要在某一具體時刻做事情的時候,你可以覆蓋這些方法。比如在下載某個圖片的過程中要響應一個事件,就覆蓋這個方法:

    //覆蓋方法,指哪打哪,這個方法是下載imagePath2的時候響應    SDWebImageManager *manager = [SDWebImageManager sharedManager];         [manager downloadImageWithURL:imagePath2 options:SDWebImageRetryFailed progress:^(NSInteger receivedSize, NSInteger expectedSize) {                 NSLog(@"顯示當前進度");             } completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished, NSURL *imageURL) {                 NSLog(@"下載完成");    }];

 

轉載http://my.oschina.net/plumsoft/blog/76128 

      http://www.cocoachina.com/ios/20141212/10622.html

ios開發之UIImageView

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.