We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47d9a9a + 92d4715 commit c56fdb6Copy full SHA for c56fdb6
Example Apps/ExampleApp-iOS/ExampleAppViewController.m
@@ -83,6 +83,7 @@ - (void)callHandler:(id)sender {
83
- (void)loadExamplePage:(UIWebView*)webView {
84
NSString* htmlPath = [[NSBundle mainBundle] pathForResource:@"ExampleApp" ofType:@"html"];
85
NSString* appHtml = [NSString stringWithContentsOfFile:htmlPath encoding:NSUTF8StringEncoding error:nil];
86
- [webView loadHTMLString:appHtml baseURL:nil];
+ NSURL *baseURL = [NSURL fileURLWithPath:htmlPath];
87
+ [webView loadHTMLString:appHtml baseURL:baseURL];
88
}
89
@end
0 commit comments