How to change WKWebView or UIWebView default font(如何更改 WKWebView 或 UIWebView 默认字体)
问题描述
UIWebView
和WKWebView
默认使用什么字体?我希望能够改变这一点.但我不想在 html 字符串中执行此操作,而是希望有类似的内容:
What font does UIWebView
and WKWebView
use by default? I would like to be able to change that. But I don't want to do it in the html string, instead I want to have something like:
// obj-c
[webView setFont:[UIFont fontWithName:@"GothamRounded-Bold" size:14]
// swift
webView.setFont(UIFont(name: "GothamRounded-Bold", size: 14))
有没有这样的属性或其他方式?
is there such property or some other way?
推荐答案
您可以使用您的 UIFont
对象(这样您可以更轻松地设置和修改它),但将 HTML 包装在 span
代替;font
标签已被弃用 自 HTML 4.01 起.
You can use your UIFont
object (so you can set it and modify more easily), but wrap the HTML in a span
instead; font
tags have been deprecated since HTML 4.01.
UIFont *font = [UIFont fontWithName:@"GothamRounded-Bold" size:14];
假设您已经创建了 NSString *htmlString
,您可以使用字体的属性:
Assuming you already have the NSString *htmlString
created, you can use the font's properties:
htmlString = [NSString stringWithFormat:@"<span style="font-family: %@; font-size: %i">%@</span>",
font.fontName,
(int) font.pointSize,
htmlString];
或者,您可以只提供值而不是使用 UIFont
对象:
Alternatively, you could just supply the values instead of using a UIFont
object:
htmlString = [NSString stringWithFormat:@"<span style="font-family: %@; font-size: %i">%@</span>",
@"GothamRounded-Bold",
14,
htmlString];
这篇关于如何更改 WKWebView 或 UIWebView 默认字体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何更改 WKWebView 或 UIWebView 默认字体
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01