Estou tentando carregar um arquivo html no meu UIWebView, mas ele não funciona. Aqui está o estágio: eu tenho uma pasta chamada html_files no meu projeto. Então, criei um webView no construtor de interface e designei uma saída para ele no viewController. Este é o código que estou usando para acrescentar o arquivo html:
-(void)viewDidLoad
{
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"html" inDirectory:@"html_files"];
NSData *htmlData = [NSData dataWithContentsOfFile:htmlFile];
[webView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:@""]];
[super viewDidLoad];
}
Isso não funcionará e o UIWebView está em branco. Eu apreciaria alguma ajuda.