I’ve a problem that i couldn’t solve, i wanna run the Apple – HTML5 Showcase – Gallary
in UIWebView inside my ipad app.
I’ve tried a local html file:
NSString *strr = [[NSBundle mainBundle] pathForResource:@"photo-gallery" ofType:@"html"];
NSString *str = [[NSString alloc] initWithContentsOfFile:strr encoding:NSASCIIStringEncoding error:nil];
NSLog(@"%@",str);
[webView loadHTMLString:str baseURL:nil];
and also a server html file, but it didn’t work, can anyone help me, i wanna show an html5/css3 in UIWebView.
thx in advance.
hi this is what you can do
For server html you simply skip the second line, and put the address.
Hope it helps