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とカスタムフォントを追加したいので、例、解決策、またはサンプルコードを教えてください。ご協力いただきありがとうございます。