I am having a problem when loading a webview. Header part having two images which are stored locally.
and body content and back ground images are given by client url. 1)Header part should be scrolled. 2)Get the path for local images with out using base url because in baseURL we are giving client url to get the body background images.
NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSString *absStirng=[[[NSBundle mainBundle] resourceURL] absoluteString];
printf("\n absStirng=============================== %s",[absStirng UTF8String]);
NSString* appendString=@"";
appendString = [appendString stringByAppendingString:@"<body>"];
appendString =[appendString stringByAppendingString:@"<table background="];
appendString =[appendString stringByAppendingString:absStirng];
appendString =[appendString stringByAppendingString:@"myimage.png width='320' height='45' style='background-repeat:no-repeat'>"]; // here unable to get local image with full path as given.
appendString =[appendString stringByAppendingString:@"<tr>"];
appendString =[appendString stringByAppendingString:@"<td align='left' width='57' height='31' style='padding: 6px 0 0 0' ><a href='/map/'><img src="];
appendString =[appendString stringByAppendingString:absStirng];// here unable to get local image with full path as given.v
appendString =[appendString stringByAppendingString:@"backButton.png></a></td>"];
appendString =[appendString stringByAppendingString:@"<td align='left' valign='middle' style='padding: 0 0 0 65px; font-family:Helvetica; font-size:21px ; font-weight:bold ; color:#FFF'>Details</td>"];
appendString =[appendString stringByAppendingString:@"</tr>"];
appendString =[appendString stringByAppendingString:@"</table>"];
returnString = [returnString stringByReplacingOccurrencesOfString:@"<body>" withString:appendString];
[webView loadHTMLString:returnString baseURL:[NSURL URLWithString:@"http://client url given here"]];
What the problem is? how to get the local images path with out reference to baseURL.
Please help me and any one help will be appreciated.
Thank you, Madan Mohan.