0
我已經創建了一個html代碼,如上所示,代碼上傳到http://www.ged.Ic.com網站。
將圖像名稱「1.jpg」添加到Xcode項目中。
當從webview打開iPad應用程序加載http://www.ged.Ic.com/page/。
如何去從進入Xcode項目設置圖像IMG SRC = 「從Xcode的映像路徑」
我已經創建了一個html代碼,如上所示,代碼上傳到http://www.ged.Ic.com網站。
將圖像名稱「1.jpg」添加到Xcode項目中。
當從webview打開iPad應用程序加載http://www.ged.Ic.com/page/。
如何去從進入Xcode項目設置圖像IMG SRC = 「從Xcode的映像路徑」
NSString *imageUrlString = @"http://www.gstatic.com/translate/intl/ru/logo.png";
NSString *yourText = @"Some text here";
NSString *htmlString = [NSString stringWithFormat:@"<img src='%@'/><br><b>%@</b>", imageUrlString, yourText];
[myWebView loadHTMLString:htmlString baseURL:nil];
NSString *imageFileName = @"image";
NSString *imageFileExtension = @"png";
NSString *imagePath = [[NSBundle mainBundle] pathForResource:imageFileName ofType:imageFileExtension];
NSString *imgHTMLTag = [NSString stringWithFormat:@"<img src=\"file://%@\" />", imagePath];
我想用NSCahce – 2014-10-30 12:21:58