2016-05-26 75 views
1

我有我的文檔中的某些png圖片和我想加載在UIWebView的這些相似圖片如何從文件加載png圖片中的UIWebView在iOS 8的目標C

<img src='/Users/rezakhalafi/Library/Developer/CoreSimulator/Devices/1784E9F2-4DCA-4D72-A7B0-1D74AFAFDFBA/data/Containers/Data/Application/54A0319C-A33D-4993-9CA3-20F73B8CD85F/Documents/CACHE/cache332377/9cache.png'> 

但它不工作。
我正在使用Objective C.
請幫助我。

+1

看到這一次它可以幫助你http://stackoverflow.com/questions/6663511/iphone-how-to-display-document-directory-images-in-image-view –

+0

不,我想設置文件UIWebView中的圖像地址。 –

回答

0

我找到了。
只需添加文件:/位於地址字符串的開頭。

<img src='file:/Users/rezakhalafi/Library/Developer/CoreSimulator/Devices/1784E9F2-4DCA-4D72-A7B0-1D74AFAFDFBA/data/Containers/Data/Application/54A0319C-A33D-4993-9CA3-20F73B8CD85F/Documents/CACHE/cache332377/9cache.png'> 
相關問題