ios中html加载本地图片的路径转换问题

NSString *pathstr = [[NSBundle mainBundle] pathForResource:@"IMG_NAVIGATIONBAR" ofType:@"png"];

在html中直接用上面的路径的不行的,html找不见那个图片,要对路径进行转换成html识别的才行。下面就是转换方法:

pathstr = [pathstr stringByReplacingOccurrencesOfString:@"/" withString:@"//"];
pathstr = [pathstr stringByReplacingOccurrencesOfString:@" " withString:@"%20"];

你可能感兴趣的:(html,ios,image,Path,pathForResource)