NSString *myHtml = [NSString stringWithFormat:
@"<html><head>"
"<style type=\"text/css\">"
"body{"
"background-image:url(%@);"
"}"
",</style>"
"</head>"
"<body>Hello world</body></html>", imgName];
// baseURL for background image, otherwise nil
NSString *path = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[self.myWebView loadHTMLString:myHtml baseURL:baseURL];
Monday, May 10, 2010
UIWebView with Custom Background Image
Taking UIWebView into use is pretty easy, customizing is a bit more complicated. Here's how you can define your own image as background.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment