J'essaie de charger un fichier html dans mon UIWebView mais cela ne fonctionne pas. Voici l'étape : j'ai un dossier appelé html_files dans mon projet. Puis j'ai créé un webView dans interface builder et je lui ai assigné un outlet dans le viewController. Voici le code que j'utilise pour ajouter le fichier 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];
}
Cela ne fonctionne pas et l'UIWebView est vide. J'aimerais avoir de l'aide.