iPhone Development - Setting UIWebView font(iPhone 开发 - 设置 UIWebView 字体)
问题描述
我必须显示从服务器中提取的富文本,所以我使用的是 UIWebView.现在的问题是我无法控制 UIWebView 中使用的字体.如何更改字体以使用系统字体(使其与应用程序的其余部分保持一致)?
I have to show rich text that i pull from server, so i'm using UIWebView. Now the problem is that i have no control over the font which is used in UIWebView. How can i change the font to use system font (making it consistent with rest of the application)?
我现在正在做这样的事情:
I'm doing something like this at the moment:
myRichTextView = [[UIWebView alloc] initWithFrame:CGRectMake(x, y, width, height)];
myRichTextView.backgroundColor = [UIColor clearColor];
[myRichTextView setScalesPageToFit:NO];
[myRichTextView loadHTMLString:myString baseURL:[NSURL URLWithString:myBaseURL]];
再次,需要控制显示字体.如果我无法控制字体,请告诉我 UIWebView 的其他替代方案.
Again, need to control the display font. If i can't control the font, please let me know other alternatives to UIWebView.
谢谢
推荐答案
在你的 HTML 文档中引用一个 css 样式表或者把样式信息放到 HTML 文档本身的顶部
Reference a css style sheet in your HTML document or put the style information into the top of the HTML document itself
这篇关于iPhone 开发 - 设置 UIWebView 字体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone 开发 - 设置 UIWebView 字体
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01