WebView即时加载css

时间:2010-03-19 06:50:54

标签: objective-c webkit webview

我有以下代码将web文件加载到webview中

- (void)awakeFromNib{

    NSString *resourcesPath = [[NSBundle mainBundle] resourcePath];
    NSString *htmlPath = [resourcesPath stringByAppendingString:@"/main.html"];
    [[self mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:htmlPath]]];

}

如何动态加载css文件(以最有效的方式),因为它不适合在html文件中使用css文件链接

1 个答案:

答案 0 :(得分:13)

您应该使用Objective-C DOM API访问DOM,并将相应的<link><style>元素插入DOM。

DOMDocument* domDocument=[webView mainFrameDocument];
DOMElement* styleElement=[domDocument createElement:@"style"];
[styleElement setAttribute:@"type" value:@"text/css"];
DOMText* cssText=[domDocument createTextNode:@"body{font-weight:bold;}"];
[styleElement appendChild:cssText];
DOMElement* headElement=(DOMElement*)[[domDocument getElementsByTagName:@"head"] item:0];
[headElement appendChild:styleElement];