Pregunta

I want to load a local file, example.pages in UIWebview. I tried with this

NSString *path = [[NSBundle mainBundle] pathForResource:@"example" ofType:@"pages" inDirectory:@""];
NSUrl *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webview loadRequest:request];

but doesn't work. Anyone?

¿Fue útil?

Solución

A Pages document is not HTML. You cannot load it in a UIWebView.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top