1
resourse의 ABC 폴더에 point.png라고하는 이미지가 있습니다.리소스에서 이미지를 가져 와서 웹보기로로드
나는 HTML에서 해당 이미지를 표시 할
NSString *myFilePath= [[NSBundle mainBundle] pathForResource:@"Point1" ofType:@"png"];
NSMutableString *strForWebView = [NSString stringWithFormat:@"<html>"
"<head><b>%@</b></head><br>"
"<img src= %@ height='30' width='30' />"
, [[play quotations] objectForKey:@"Heading"], myFilePath, .......
그래서 지금은 그래서 ...
가 웹보기에로드되는 HTML에 이미지의 경로를 ... 선택합니다 것을해야 할 일PLS는
덕분에 웹보기를로드 할 수있는 올바른 base을 제공하기 위해 매우 중요합니다 당신의 접근 방식으로
이 링크로 이동하십시오. // [stackoverflow.com/questions/6420925/load-resources-from-relative-path-using-local-html-in-uiwebview] [1] :이 당신에게 HTTP 도움이 될 수 있기를 바랍니다 [1] : http://stackoverflow.com/questions/6420925/load-resources-from-relative-path-using-local-html-in-uiwebview – Mary