Link to resources inside WebView - iPhone

前端 未结 10 1011
难免孤独
难免孤独 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:27

    Maybe it does have something to do with the baseurl: when I load the resources, I use this line:

    [webView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURL URLWithString:@""]];
    

    see at the end, it says baseURL: "". If I take this out, it doesn't work (crashes), but I don't know the path to my resources. If somebody does.....?

提交回复
热议问题