Usando HTML e imagens locais no UIWebView


164

Eu tenho um UIWebView no meu aplicativo que desejo usar para exibir uma imagem que será vinculada a outro URL.

estou a usar

<img src="image.jpg" /> to load the image.

O problema é que a imagem não carrega (ou seja, não pode ser encontrada), embora tenha sido adicionada como um recurso no meu projeto e copiada para o pacote.

Eu tentei usar o NSBundle para obter o caminho completo da imagem e usá-la, e ela ainda não aparece na exibição da web.

Alguma ideia?


Não consigo mais fazer isso no iPhone OS 3.0. :( Mais informações (StackOverflow.com).
Joe D'Andrea

8
Por que o voto negativo? : /
Jasarien 17/03/10

5
Não é necessariamente que eles sejam maus. Talvez eles tivessem uma razão legítima? Provavelmente nunca saberemos. Se ao menos eles tivessem a cortesia de explicar por que votaram contra em um comentário ...
Jasarien

63
Deve ser obrigatório escrever um comentário em uma votação.
Robert

@ Jasarien: Eu preciso da mesma funcionalidade. mas não consigo entender o que deve ser passado no htmlString em [webView loadHTMLString: htmlString baseURL: baseURL] e como coloco <img src = "image.jpg" /> minha imagem em html.
iPhone

Respostas:


291

O uso de caminhos ou arquivos relativos: caminhos para se referir a imagens não funciona com o UIWebView. Em vez disso, você deve carregar o HTML na visualização com a baseURL correta:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[webView loadHTMLString:htmlString baseURL:baseURL];

Você pode consultar suas imagens assim:

<img src="myimage.png">

(de uiwebview revisitado )


15
[[NSBundle mainBundle] bundleURL] nós podemos usar isso como bundleURL
Naveen Shan

2
Tudo o que isso faz por mim é fornecer uma string na minha visão da web que eu defini para minha htmlString. ou seja, tudo o que mostra na página é "tour.html"
Chewie The Chorkie

Como nota de rodapé, se você estiver tentando carregar arquivos javascript em vez de imagens, também precisará ver isso: stackoverflow.com/a/3629479/385619
Willster 13/14

no caso do Xamarin e do MonoTouch webvie.LoadHtmlString (strig, NSBundle.MainBundle.BundleUrl);
Erik Simonic

1
Perfeito trabalho no simulador, mas não no meu dispositivo
jose920405

46

Usa isto:

[webView loadHTMLString:htmlString baseURL:[[NSBundle mainBundle] bundleURL]];

5
Mas sua resposta é idêntica à postada há 3 anos ... Sua resposta não oferece nada de diferente, não precisou ser postada porque a resposta aceita já cobria o que você postou.
Jasarien

13
É uma versão conveniente de uma linha da resposta aceita - nenhum dano causado por tê-la aqui.
23312 MusiGenesis

9
@ Jasarien, que a resposta de Adam Alexander foi a única solução até agosto de 2009. Mas, no Max OS X versão 10.6, essa nova propriedade bundleURLfoi adicionada ao NSBundle. Não é necessário pegar o bundlePath e converter em URL. Portanto, para as pessoas que trabalham em versões superiores a 10,6, isso oferece uma solução melhor.
rineez

vendo muita atividade -ve neste post recentemente .. E ninguém notou por que é?
TV Lithu

24

Eu acabei de encontrar esse problema também. No meu caso, eu estava lidando com algumas imagens que não estavam localizadas e outras que estavam - em vários idiomas. Um URL base não conseguiu as imagens dentro de pastas localizadas para mim. Eu resolvi isso fazendo o seguinte:

// make sure you have the image name and extension (for demo purposes, I'm using "myImage" and "png" for the file "myImage.png", which may or may not be localized)
NSString *imageFileName = @"myImage";
NSString *imageFileExtension = @"png";

// load the path of the image in the main bundle (this gets the full local path to the image you need, including if it is localized and if you have a @2x version)
NSString *imagePath = [[NSBundle mainBundle] pathForResource:imageFileName ofType:imageFileExtension];

// generate the html tag for the image (don't forget to use file:// for local paths)
NSString *imgHTMLTag = [NSString stringWithFormat:@"<img src=\"file://%@\" />", imagePath];

Em seguida, use imgHTMLTag no seu código HTML UIWebView ao carregar o conteúdo.

Espero que isso ajude quem encontrou o mesmo problema.


1
Usar file://era o que eu precisava.
So Over It

Bom, exatamente o que eu precisava #
Rubberduck

8

tente usar a string de imagem base64.

NSData* data = UIImageJPEGRepresentation(image, 1.0f);

NSString *strEncoded = [data base64Encoding];   

<img src='data:image/png;base64,%@ '/>,strEncoded

6

Eu tive um problema semelhante, mas todas as sugestões não ajudaram.

No entanto, o problema era o próprio * .png. Não tinha canal alfa . De alguma forma, o Xcode ignora todos os arquivos png sem canal alfa durante o processo de implantação.


O que você fez para sair disso? Você encontrou alguma solução? Eu estou enfrentando o mesmo problema. O UIWebView não mostra imagens como não tinha canal alfa.
Spellja #

1
Eu usei o Gimp para adicionar um canal alfa aos meus arquivos png. Veja docs.gimp.org/en/gimp-layer-alpha-add.html

3

Você pode adicionar uma pasta (por exemplo, WEB com subpastas css, img e js e arquivo test.html) ao seu projeto, escolhendo Adicionar arquivos ao "MyProj" e selecionando Criar referências de pasta . Agora, o código a seguir cuidará de todas as imagens referidas, css e javascript

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"WEB/test.html" ofType:nil];
[webView  loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:filePath]]];

3

No Swift 3:

webView.loadHTMLString("<img src=\"myImg.jpg\">", baseURL: Bundle.main.bundleURL)

Isso funcionou para mim mesmo quando a imagem estava dentro de uma pasta sem nenhuma modificação.


2

Depois de ler alguns capítulos no iOS 6 Programming Cookbok e começar a aprender a programação do objetivo-c e do iOS, gostaria apenas de acrescentar que, se alguém quiser carregar recursos de um pacote personalizado e usá-lo em uma visualização na Web , pode ser realizado assim:

NSString *resourcesBundlePath = [[NSBundle mainBundle] pathForResource:@"Resources" ofType:@"bundle"];
NSBundle *resourcesBundle = [NSBundle bundleWithPath:resourcesBundlePath];
[self.outletWebView loadHTMLString:[html description] baseURL:[resourcesBundle bundleURL]];

Em seu html, você pode consultar um recurso usando o pacote "personalizado" como seu caminho base:

body {
    background-image:url('img/myBg.png');
}

1

Versão rápida da resposta da Lithu TV:

webView.loadHTMLString(htmlString, baseURL: NSBundle.mainBundle().bundleURL)

1

Versão rápida da resposta do Objetivo C de Adam Alexanders:

let logoImageURL = NSURL(fileURLWithPath: "\(Bundle.main.bundlePath)/PDF_HeaderImage.png")

0

Se você usar links relativos às imagens, as imagens não serão exibidas, pois todas as estruturas de pastas não serão preservadas após a compilação do aplicativo iOS. O que você pode fazer é converter sua pasta da Web local em um pacote , adicionando a extensão de nome de arquivo ' .bundle '.

Portanto, se o site local estiver contido em uma pasta " www ", isso deverá ser renomeado para " www.bundle ". Isso permite que as pastas de imagens e a estrutura de diretórios sejam preservadas. Em seguida, carregue o arquivo ' index.html ' no WebView como uma string HTML com ' baseURL ' (definido como www.bundle path) para permitir o carregamento de links de imagem relativos.

NSString *mainBundlePath = [[NSBundle mainBundle] resourcePath];
NSString *wwwBundlePath = [mainBundlePath stringByAppendingPathComponent:@"www.bundle"];
NSBundle *wwwBundle = [NSBundle bundleWithPath:wwwBundlePath];
if (wwwBundle != nil) {
    NSURL *baseURL = [NSURL fileURLWithPath:[wwwBundle bundlePath]];
    NSError *error = nil;
    NSString *page = [[NSBundle mainBundle] pathForResource:@"index.html" ofType:nil];
    NSString *pageSource = [NSString stringWithContentsOfFile:page encoding:NSUTF8StringEncoding error:&error];
    [self.webView loadHTMLString:pageSource baseURL:baseURL];
}

0

Essas respostas me ajudaram - especificamente o arquivo: \\ xxxxxxx.xxx, mas eu tive que fazer uma solução alternativa para exibir a imagem.

No meu caso, tenho um arquivo HTML no meu servidor que faço o download no diretório de documentos. Quero que ele seja exibido com um gráfico local em um UIWebView que não consegui trabalhar. Aqui está o que eu fiz:

  1. Copie o arquivo do NSBundle para o diretório de documentos local
  2. Referencie o arquivo no meu documento HTML como "file: \\ filename.png"

Portanto, na inicialização, copie o arquivo para o diretório de documentos:

-(BOOL)copyBundleFilesToDocumentsDirectoryForFileName:(NSString *)fileNameToCopy OverwriteExisting:(BOOL)overwrite {
        //GET DOCUMENTS DIR
        //Search for standard documents using NSSearchPathForDirectoriesInDomains
        //First Param = Searching the documents directory
        //Second Param = Searching the Users directory and not the System
        //Expand any tildes and identify home directories.
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDir = [paths objectAtIndex:0];

        //COPY FILE FROM NSBUNDLE File to Local Documents Dir
        NSString *writableFilePath = [documentsDir  stringByAppendingPathComponent:fileNameToCopy];

        NSFileManager *fileManager = [NSFileManager defaultManager];
        NSError *fileError;

        DDLogVerbose(@"File Copy From Bundle to Documents Dir would go to this path: %@", writableFilePath);

        if ([fileManager fileExistsAtPath:writableFilePath]) {
            DDLogVerbose(@"File %@ already exists in Documents Dir", fileNameToCopy);

            if (overwrite) {
                [fileManager removeItemAtPath:writableFilePath error:nil];
                DDLogVerbose(@"OLD File %@ was Deleted from  Documents Dir Successfully", fileNameToCopy);
            } else {
                return (NO);
            }
        }

        NSArray *fileNameParts = [fileNameToCopy componentsSeparatedByString:@"."];
        NSString *bundlePath = [[NSBundle mainBundle]pathForResource:[fileNameParts objectAtIndex:0] ofType:[fileNameParts objectAtIndex:1]];
        BOOL success = [fileManager copyItemAtPath:bundlePath toPath:writableFilePath error:&fileError];

        if (success) {
            DDLogVerbose(@"Copied %@ from Bundle to Documents Dir Successfully", fileNameToCopy);
        } else {
            DDLogError(@"File %@ could NOT be copied from bundle to Documents Dir due to error %@!!", fileNameToCopy, fileError);
        }

    return (success);
}

-7

Minha solução complexa (ou tutorial) para rss-feed (entre em RSSItems) funciona apenas no dispositivo:

#define CACHE_DIR       [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject]

for (RSSItem *item in _dataSource) {

    url = [NSURL URLWithString:[item link]];
    request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"GET"];

    [NSURLConnection sendAsynchronousRequest:request
                                       queue:queue
                           completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {

                               @autoreleasepool {

                                   if (!error) {

                                       NSString *html = [[NSString alloc] initWithData:data
                                                                              encoding:NSWindowsCP1251StringEncoding];

                                       {
                                           NSError *error = nil;

                                           HTMLParser *parser = [[HTMLParser alloc] initWithString:html error:&error];

                                           if (error) {
                                               NSLog(@"Error: %@", error);
                                               return;
                                           }

                                           HTMLNode *bodyNode = [parser body];

                                           NSArray *spanNodes = [bodyNode findChildTags:@"div"];

                                           for (HTMLNode *spanNode in spanNodes) {
                                               if ([[spanNode getAttributeNamed:@"class"] isEqualToString:@"page"]) {

                                                   NSString *absStr = [[response URL] absoluteString];
                                                   for (RSSItem *anItem in _dataSource)
                                                       if ([absStr isEqualToString:[anItem link]]){

                                                           NSArray *spanNodes = [bodyNode findChildTags:@"img"];
                                                           for (HTMLNode *spanNode in spanNodes){
                                                               NSString *imgUrl = [spanNode getAttributeNamed:@"src"];
                                                               if (imgUrl){
                                                                   [anItem setImage:imgUrl];
                                                                   break;
                                                               }
                                                           }

                                                           [anItem setHtml:[spanNode rawContents]];
                                                           [self subProcessRSSItem:anItem];
                                                       }
                                               }
                                           }

                                           [parser release];
                                       }

                                       if (error) {
                                           NSLog(@"Error: %@", error);
                                           return;
                                       }

                                       [[NSNotificationCenter defaultCenter] postNotificationName:notification_updateDatasource
                                                                                           object:self
                                                                                         userInfo:nil];

                                   }else
                                       NSLog(@"Error",[error userInfo]);
                               }
                           }];

e

- (void)subProcessRSSItem:(RSSItem*)item{

NSString *html = [item html];
if (html) {

    html = [html stringByReplacingOccurrencesOfString:@"<div class=\"clear\"></div>"
                                           withString:@""];

    html = [html stringByReplacingOccurrencesOfString:@"<p class=\"link\">"
                                           withString:@""];

    html = [html stringByReplacingOccurrencesOfString:@"<div class=\"page\">"
                                           withString:@""];

    html = [html stringByReplacingOccurrencesOfString:@"</div>"
                                           withString:@""];

    NSArray *array1 = [html componentsSeparatedByString:@"<a"];
    if ([array1 count]==2) {
        NSArray *array2 = [html componentsSeparatedByString:@"a>"];

        html = [[array1 objectAtIndex:0] stringByAppendingString:[array2 objectAtIndex:1]];
    }

    NSURL *url;
    NSString *fileName;
    NSString *filePath;
    BOOL success;
    if ([item image]) {

        url = [NSURL URLWithString:
                      [hostString stringByAppendingString:[item image]]];
        NSData *imageData = [NSData dataWithContentsOfURL:url];

        fileName = [[[url relativePath] componentsSeparatedByString:@"/"] lastObject];

        filePath = [NSString stringWithFormat:@"%@/%@",
                              CACHE_DIR,
                              fileName];

        //save image locally
        success = [[NSFileManager defaultManager] createFileAtPath:filePath
                                                               contents:imageData
                                                             attributes:nil];

        //replace links
        html = [html stringByReplacingOccurrencesOfString:[item image]
                                               withString:filePath];

        [item setImage:fileName];

        //Передадим обновление интерфейса, снабдив индексом обновляемой ячейки
        [[NSNotificationCenter defaultCenter] postNotificationName:notification_updateRow
                                                            object:self
                                                          userInfo:[NSDictionary dictionaryWithObject:@([_dataSource indexOfObject:item])
                                                                                               forKey:@"row"]];
    }

    //finalize html
    html = [NSString stringWithFormat:@"<html><body>%@</body></html>",html];

    fileName = [[[item link] componentsSeparatedByString:@"/"] lastObject];
    filePath = [NSString stringWithFormat:@"%@/%@",
                CACHE_DIR,
                fileName];
    success = [[NSFileManager defaultManager] createFileAtPath:filePath
                                                      contents:[html dataUsingEncoding:NSUTF8StringEncoding]
                                                    attributes:nil];

    [item setHtml:
     (success)?filePath:nil];//for direct download in other case
}

}

no controlador de exibição

- (void)viewDidAppear:(BOOL)animated{

RSSItem *item = [[DataSingleton sharedSingleton] selectedRSSItem];

NSString* htmlString = [NSString stringWithContentsOfFile:[item html]
                                                 encoding:NSUTF8StringEncoding error:nil];
NSURL *baseURL = [NSURL URLWithString:CACHE_DIR];

[_webView loadHTMLString:htmlString
                 baseURL:baseURL];

}

classe de item rss

#import <Foundation/Foundation.h>

@interface RSSItem : NSObject

@property(nonatomic,retain) NSString *title;
@property(nonatomic,retain) NSString *link;
@property(nonatomic,retain) NSString *guid;
@property(nonatomic,retain) NSString *category;
@property(nonatomic,retain) NSString *description;
@property(nonatomic,retain) NSString *pubDate;
@property(nonatomic,retain) NSString *html;
@property(nonatomic,retain) NSString *image;
@end

parte de qualquer html com imagem

<html><body>
<h2>blah-blahTC One Tab 7</h2>
<p>blah-blah НТС One.</p>
<p><img width="600" height="412" alt="" src="/Users/wins/Library/Application Support/iPhone Simulator/5.0/Applications/2EAD8889-6482-48D4-80A7-9CCFD567123B/Library/Caches/htc-one-tab-7-concept-1(1).jpg"><br><br>
blah-blah (Hasan Kaymak) blah-blah HTC One Tab 7, blah-blah HTC One. <br><br>
blah-blah
 microSD.<br><br>
blah-blah Wi-Fi to 4G LTE.</p>
</p>
</body></html>

imagem salva para o nome htc-one-tab-7-concept-1 (1) .jpg

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.