初學IOS遇到的問題(二)UIImage載入圖片遇到的問題,

來源:互聯網
上載者:User

初學IOS遇到的問題(二)UIImage載入圖片遇到的問題,
問題產生過程:

圖片資源放在Assets.xcassets中,分別用UIImage的類方法imageNamed和imageWithContentsOfFile擷取圖片對象,但發生奇怪的情況,前者擷取到圖片對象,後者結果為nil。代碼如下:

1.通過UIImage的類方法imageNamed:可以擷取到圖片對象。

NSString *imageName = @"test.jpg";UIImage *img = [UIImage imageNamed:imageName];

 

2.但通過UIImage的類方法imageWithContentsOfFile:得到img為nil

NSString *imageName = @"test.jpg";NSBundle *bundle = [NSBundle mainBundle];NSString *path = [bundle pathForResource:imageName ofType:nil];UIImage *img = [UIImage imageWithContentsOfFile:path];

 

原因分析:

其實,UIImage建立對象有兩種方法:

  •  imageNamed:建立的對象會緩衝到系統記憶體中,不會立即釋放到記憶體。好處是再次載入使用這種方式會減少讀取操作,加快程式運行。缺點:載入過多圖片會佔用大量記憶體空間。
  •  imageWithContentsOfFile:mageWithContentsOfFile建立的對象不會緩衝到系統記憶體中。好處是不產生緩衝。缺點:對於經常使用的小圖片,會頻繁讀取。

imageNamed只需傳檔案名稱,imageWithContentsOfFile需要傳入檔案全路徑。 而通檔案全路徑可以通過NSBundle對象方法 pathForResource: ofType:得到。這時候要注意:Assets.xcassets圖片資源不能通過NSBundle對象方法 pathForResource: ofType:獲得。想擷取Assets.xcassets圖片資源只能使用imageNamed:。

解決方案:

     把圖片資源放在Assets.xcassets外的目錄。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.