加載圖像我有問題,UIWebView
延遲當從URL加載圖像。UIWebView有一個延遲時,從URL
在我的代碼是行加載本地HTML文件:
NSBundle *thisBundle = [NSBundle mainBundle];
NSString *path = [thisBundle pathForResource:@"detail" ofType:@"html"];
NSString *html = [NSString stringWithContentsOfFile:path];
NSString *htmlString = [NSString stringWithFormat:html, imageURL];
[webView loadHTMLString:htmlString baseURL:nil];
,並在我的detail.html文件行之一:
<img src="%@" height="100%" alt="…"></img>
,現在當我按下按鈕,轉到UIWebView首先是白色的,幾秒後顯示圖像和文字。 我知道,從URL加載圖像需要時間,但它可能在第一次顯示文本和下一個等待加載圖像?
一般來說,我的想法是:按鈕 - >去UIWebView
- >顯示文本 - >時,它的加載
你描述的解決方案理論上是好的,但我想保持onl如果可能的話,UIWebView。 – murzynpl
然後,你將不得不使用JavaScript來控制什麼出現在你的web視圖和什麼時候。 – Gruntcakes
**馬丁H,**你可以寫更多如何用JavaScript做到這一點? – murzynpl