0

HTMLコードからのビューを表示したいのですが、これはWebビューからメインビューに追加するコードです。

- (void) createWebViewWithHTML{
//create the string
NSMutableString *html = [NSMutableString stringWithString: @"<html><head><title></title></head><body style=\"background:transparent;\">"];

//continue building the string
[html appendString:@"body content here"];
[html appendString:@"</body></html>"];

//instantiate the web view
UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.frame];

//make the background transparent
[webView setBackgroundColor:[UIColor clearColor]];

//pass the string to the webview
[webView loadHTMLString:[html description] baseURL:nil];

//add it to the subview
[self.view addSubview:webView];

}しかし、問題は次のとおりです。1、uiwebviewの背景が透明ではなく白色である2、コードにcssとカスタムフォントを追加したいので、例、解決策、またはサンプルコードを教えてください。ご協力いただきありがとうございます。

4

1 に答える 1

0

これは私のために働きます: http ://www.edumobile.org/iphone/iphone-programming-tutorials/impliment-uiwebview-with-a-transparent-background-in-iphone/

それが役に立てば幸い!

于 2012-07-23T11:29:11.557 に答える