无法在UIWebView中更改颜色

时间:2011-06-22 09:08:53

标签: html objective-c uiwebview

我正在使用以下代码,如果我想创建一个HTML页面但它不能用于UIWebView,它可以正常工作。看起来好像不知道为什么Web视图不呈现HTML标记。有什么办法可以解决吗?

 NSString *htmlString = [NSString stringWithFormat:@"<html><head><style type='text/css'>body { color:#FFFFFF; background-color: #000000; }</style></head><body>%@</body></html>",string];

[webView loadHTMLString:htmlString baseURL:nil];

1 个答案:

答案 0 :(得分:0)

此代码适用于我:

- (void)viewDidLoad {
    [super viewDidLoad];
    NSString *string = [[NSString alloc] initWithFormat:@"Helooooooo"];
    NSString *htmlString = [[NSString alloc] initWithFormat:@"<html><head><style type='text/css'>body { color:#FFFFFF; background-color: #000000; }</style></head><body>%@</body></html>", string];
    [webView loadHTMLString:htmlString baseURL:nil];
}

以下是截图:

enter image description here