up vote 0 down vote favorite
share [g+] share [fb]

i want to load just the html from the web and show the images from the local resource.

This helped me a lot, but is the path to the resource on every device the same? Or does it depend on an installation path or similar? http://stackoverflow.com/questions/1577576/show-content-with-uiwebview-on-the-iphone

link|improve this question

25% accept rate
feedback

1 Answer

the path to resources is different on every device, that's why you use the function

[[NSBundle mainBundle] pathForResource:nameOfImage ofType:@"jpg"]

the html loading from the web you can do all kinds of ways. The easiest is just:

NSString *myHTML = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://web.site.com/file.html"]];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.