繁体   English   中英

资产目录中字体资产的定义是什么?

[英]What's the definition of Font Asset in the Asset Catalog?

从iOS 13开始, CTFontManager有如下function:

@discussion Font assets are extracted from the asset catalog and registered. This call must be made after the completion handler of either NSBundleResourceRequest beginAccessingResourcesWithCompletionHandler: or conditionallyBeginAccessingResourcesWithCompletionHandler: is called successfully.
Name the assets using Postscript names for individual faces, or family names for variable/collection fonts. The same names can be used to unregister the fonts with CTFontManagerUnregisterFontDescriptors. In iOS, fonts registered with the persistent scope are not automatically available to other processes. Other process may call CTFontManagerRequestFonts to get access to these fonts.

@param      fontAssetNames
            Array of font name assets in asset catalog.

...

CTFontManagerRegisterFontsWithAssetNames(_ fontAssetNames: CFArray, _ bundle: CFBundle?, _ scope: CTFontManagerScope, _ enabled: Bool, _ registrationHandler: ((CFArray, Bool) -> Bool)?)

但是,资产目录没有任何方法可以添加“字体资产”。

我试过的:

  • 这里取字体KanitRegular.ttf (PostScript 名称是Kanit-Regular )。
  • 在资产目录中创建了名为Kanit-Regular的数据资产。
  • 将字体文件重命名为Kanit-Regular.ttf并将其放入数据资产中。

数据资产的Contents.json现在看起来像这样:

{
   "data" : [
    {
      "filename" : "Kanit-Regular.ttf",
      "idiom": "universal",
      "universal-type-identifier" : "public.truetype-ttf-font"
    }
  ],
  "info" : {
    "author" : "xcode",
    "version" : 1
  }
}
  • 尝试通过CTFontManager加载此字体

像这样:

func registerFont() {
    var cfBundle: CFBundle?
    if let bundle = Bundle(for: type(of: self)) {
        cfBundle = CFBundleCreate(kCFAllocatorDefault, bundle.bundleURL as CFURL)
    }
    CTFontManagerRegisterFontsWithAssetNames(["Kanit-Regular"] as CFArray, cfBundle, .persistent, true) { (errors, done) -> Bool in
        print(errors)
        return done
    }
}

在此之后,打印errors

▿ 1 element
  - 0 : Error Domain=NSPOSIXErrorDomain Code=22 "Invalid argument" UserInfo={CTFontManagerErrorFontAssetNameKey=(
    "Kanit-Regular"
)}

有什么办法让它工作吗?

通过执行以下操作使其工作:

  • 使用fonts按需资源标签标记Kanit-Regular数据资产(标签名称可以是您的偏好名称, fonts只是示例)。
  • fonts标签放入Initial Install Tags Prefetched Resource Tags 部分

初始安装标签资源标签部分

  • Signing & Capabilities中添加Fonts Capability 并勾选其中的所有框

在此处输入图像描述

  • 在注册fonts之前实现bundle资源访问请求

像这样:

func registerFont() {
    var cfBundle: CFBundle?
    var resourceRequest: NSBundleResourceRequest?
    if let bundle = Bundle(for: type(of: self)) {
        resourceRequest = NSBundleResourceRequest(tags: Set(arrayLiteral: "fonts"), bundle: bundle)
        cfBundle = CFBundleCreate(kCFAllocatorDefault, bundle.bundleURL as CFURL)
    }
    resourceRequest?.beginAccessingResources() { error in
        if let error = error {
            print(error)
        } else {
            CTFontManagerRegisterFontsWithAssetNames(["Kanit-Regular"] as CFArray, cfBundle, .persistent, true) { (errors, done) -> Bool in
                print(errors)
                return done
            }
        }
    }
}

结果

当scope被以.persistent.user的方式传递,以CTFONTMANAGERREGISTER CTFontManagerRegisterFontsWithAssetNames 0140年8月8日。 如果 scope 是.process.none ,则返回问题末尾提供的相同errors output 。

虽然这个 function 不符合我的需要,但我至少验证了它正在工作。 也许有人会发现它很有用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM