UIWebView iOS 4.2.1 中的阿拉伯语 TTF(TrueType 字体)
你好 我想在 UIWebView 中使用自定义阿拉伯字体,我读到 iOS 4.2 及以上我们可以使用 TTF 网络字体。
我的资源中有阿拉伯字体,以下是我正在使用的代码:
<html>
<head>
<title>@font-face Demo</title>
<style type="text/css">
@font-face {
font-family: 'me_quran Regular';
src: local('me_quran Regular'),
local('me_quran'),
url('me_quran.ttf') format('truetype');
}
h1, p {
font-family: 'me_quran Regular';
}
h1 {
font-size: 45px;
}
p {
font-size: 18px;
line-height: 27px;
}
#container{
width: 800px;
margin: 0 auto 0 auto;
}
}
</style>
</head>
<body>
<div id="container">
<h1>بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</body>
</html>
问题是:我在 UIWebView 中获取阿拉伯文本,但它不是我加载的文本,它是 iOS 使用的默认阿拉伯字体。
帮帮我吧! 注意:我测试过很多英文TTF,它们在iOS 4.2.1 上都工作得很好。
Hi
I want to use custom arabic font in UIWebView, I read that iOS 4.2 onwards we can use TTF webfonts.
I have arabic font in my resources and following is the code I am using:
<html>
<head>
<title>@font-face Demo</title>
<style type="text/css">
@font-face {
font-family: 'me_quran Regular';
src: local('me_quran Regular'),
local('me_quran'),
url('me_quran.ttf') format('truetype');
}
h1, p {
font-family: 'me_quran Regular';
}
h1 {
font-size: 45px;
}
p {
font-size: 18px;
line-height: 27px;
}
#container{
width: 800px;
margin: 0 auto 0 auto;
}
}
</style>
</head>
<body>
<div id="container">
<h1>بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</body>
</html>
The problem is: I am getting the arabic text in UIWebView but its not the one I loaded, its the default arabic font iOS uses.
Help me out!
Note: I have tested many English TTF, they all are working fine with iOS 4.2.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你好
我终于想通了。您可以加载几乎所有 (.ttf) 字体,无论是阿拉伯语、英语还是 iOS 3.2 以上的任何字体。您只需要使用正确的文本(就 unicode 而言)即可显示它。
Hi
I finally figured it out. You can load almost all (.ttf) fonts, either arabic, english or whatever on iOS 3.2 above. You just need to use the correct text (in terms of unicode), to display it.