gpt4 book ai didi

xamarin - 有没有办法可以在WebView中使用Apple San Francisco?

转载 作者:行者123 更新时间:2023-12-02 08:11:07 24 4
gpt4 key购买 nike

我的CSS样式表似乎工作正常,但无法将字体更改为与iOS 11中使用的System字体紧密匹配的字体。这是我尝试的方法:

body, html {
color: red;
font-family: 'San Francisco';
};

字符颜色为红色,但字体不变。

如何在Xamarin.Forms iOS中指定与Apple System字体非常相似的字体?

最佳答案

可以通过以下方式检索系统字体系列名称:

UIFont.PreferredBody.FamilyName

在iOS 11上是:
.SF UI Text

老套:
<font face='.SF UI Text'>This is the iOS System Font: San Francisco</font>

HTML / CSS:
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
body {
font-family: '.SF UI Text';
font-size: 60pt;
}
</style>
</head>
<body>
This is the iOS System Font: San Francisco
</body>
</html>

关于xamarin - 有没有办法可以在WebView中使用Apple San Francisco?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46968283/

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