0
我的問題如下。我對在UIWebView中加載資源的路徑有點困惑。我想讓我的鏈接處於活動狀態。目前WebView沒有獲取其他文件夾中的資源(.css,.html),而它們之間的鏈接正確。你知道如何解決這個問題嗎? 目前,我正在做這樣的瀏覽UIWebView中的文件夾
NSString* path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]; NSString* htmlString = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil]; [WebView loadHTMLString:htmlString baseURL:[NSURL fileURLWithPath:path]];
感謝您閱讀我!
其他文件夾中這不加載文件。 – BrainOverfl0w 2010-12-18 21:45:51
沒關係。我把所有的東西放在同一個目錄中,它似乎在工作。 – BrainOverfl0w 2010-12-19 20:57:11