gpt4 book ai didi

iphone - 在 Iphone SDK 中更改网页 View 的字体大小

转载 作者:可可西里 更新时间:2023-11-01 05:02:54 24 4
gpt4 key购买 nike

我已经实现提要解析并将内容作为字符串获取。现在,我正在以编程方式通过它制作 html 文件。在 Web View 中加载该 HTML。我的 WebView 是 TableView 单元格中的 subview 。

enter image description here

但现在我想更改网页 View 内容的字体大小,以便用户可以看到一些细节。

我的 HTML 生成代码是:

NSString * postHTML=[[_parseResults objectAtIndex:indexPath.row]valueForKey:@"summary"];

NSString *close =[NSString stringWithFormat:@"</body></html>"];

NSString *HTMLString = [NSString stringWithFormat:@"%@%@", postHTML,close];

[Web_view loadHTMLString:HTMLString baseURL:nil];

[cell.contentView addSubview:Web_view];

return cell;

如何更改网页 View 内容的字体大小?

最佳答案

[myWeb loadHTMLString:[NSString stringWithFormat:@"<div style='text-align:justify; font-size:45px;font-family:HelveticaNeue-CondensedBold;color:#0000;'>%@%@",postHTML,close] baseURL:nil];

您可以在代码中的 font-size:size 中设置字体大小。

试试这个..让我知道它是否有效!!!

关于iphone - 在 Iphone SDK 中更改网页 View 的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13877470/

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