mac osx,我想让我的webview看起来透明,并在其上显示数据,背景显示父视图的图像.
任何人都可以让我知道如何做到这一点?
这种方法不行
NSString * source = @"<html><head><title></title></head><body><div id=\"Box\">Example Box</div></body></html>"; [[webView mainFrame] loadHTMLString:source baseURL:[NSURL URLWithString:@""] ]; [[webView windowScriptObject] evaluateWebScript:@"document.getElementById('Box').style.backgroundColor = '#dddddd';"]; // Change Box background [[webView windowScriptObject] evaluateWebScript:@"document.body.style.backgroundColor = '#dddddd';"]; // Change body background