gpt4 book ai didi

html - 我可以在 IOS 5 的一个 UIWebView 中有两种不同的样式吗

转载 作者:行者123 更新时间:2023-11-28 13:35:32 24 4
gpt4 key购买 nike

这是我的代码:

         CGRect frame9 = CGRectMake(392, 100, 320, 329);

UIWebView * webView = [[UIWebView alloc] initWithFrame:frame9];
[webView setBackgroundColor:[UIColor clearColor]];

NSString* htmlContentString = [NSString stringWithFormat:
@"<html>"
"<style type=\"text/css\">"
" body {background-color:transparent; font-family:Helvetica; color: #c8b981 ; font-size:18px;text-align :justify;} .titulo {background-color:transparent; font-family:Helvetica; color: #42382b ; font-size:11px;}"
"</style>"
"<body>"
"<p class = titulo > %@ </p>"
"<p>%@</p>"
"<p2 { background-color:transparent; font-family:Helvetica; color: #42382b ; font-size:11px;text-align :left};> %@ </p2>"
"<p>%@</p>"
"<h2 style =background-color:transparent; font-family:Helvetica; color: #42382b ; font-size:11px;text-align :left;> %@ </h2>"
"<p>%@</p>"
"</body></html>",@"A LA VISTA", vino.vista,@"POR LA NARIZ" ,vino.nariz,@"AL PALADAR" , vino.paladar];

[webView loadHTMLString:htmlContentString baseURL:nil];

webView.backgroundColor = [UIColor clearColor];
[webView setOpaque:NO];
webView.scrollView.bounces = NO;
[subview addSubview:webView];

我想做的是为正文设置一种样式,为标题设置一种样式,但不起作用..

谢谢

最佳答案

看起来您的 HTML 需要一些工作。尝试为您的 p 标签使用类。不过,我认为这就是您想要的。

NSString *htmlString = @"<html><style type='text/css\'> body { background-color:transparent; font-family:Helvetica; color: #c8b981; font-size:18px;text-align:justify} .class1 { background-color:transparent; font-family:Helvetica; color: #0000FF; font-size:11px; } .class2 { background-color:transparent; font-family:Helvetica; color: #FF0000 ; font-size:11px; }' </style><body> <p class='class1'> Class1 </p><p class='class2'> Class2 </p><p> No Class </p></body></html>";

[webView loadHTMLString:htmlString baseURL:nil];

关于html - 我可以在 IOS 5 的一个 UIWebView 中有两种不同的样式吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9892383/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com