Link to resources inside WebView - iPhone

前端 未结 10 1008
难免孤独
难免孤独 2020-11-27 14:28

I have a webview in my iPhone application, and I also have some html files inside my Resources folder. When my app loads, I load in a page from my resources into my webview.

10条回答
  •  时光说笑
    2020-11-27 15:33

    I fixed it: I used this for the BaseURL like August said:

    NSString *path = [[NSBundle mainBundle] bundlePath];
    NSURL *baseURL = [NSURL fileURLWithPath:path];
    

    Thank you!

提交回复
热议问题