문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top