Font
The payload that configures fonts.
Declaration
object FontProperties
| Name | Type | Description |
|---|---|---|
Font Required | data | The contents of the font file. |
Name | string | The user-visible name for the font. This field is replaced by the actual name of the font after installation. Each payload must contain exactly one font file in trueType (.ttf) or OpenType (.otf) format. Collection formats (.ttc or .otc) are not supported. Fonts are identified by their embedded PostScript names. Two fonts with the same PostScript name are considered to be the same font even if their contents differ. Installing two different fonts with the same PostScript name isn’t supported, and the resulting behavior is undefined. |
Discussion
Specify com.apple.font as the payload type.
In iPadOS 18 and later, the font profile is available on the user channel for Shared iPads.
Profile availability
Device channel | iOS, macOS, visionOS |
User channel | macOS, Shared iPad |
Allow manual install | iOS, macOS, visionOS |
Requires supervision | NA |
Requires user-approved MDM | NA |
Allowed in user enrollment | iOS, macOS, visionOS |
Allow multiple payloads | iOS, macOS, Shared iPad, visionOS |
Profile example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>Font</key>
<data>YmFzZTY0ZW5jb2RlZGRhdGEK</data>
<key>Name</key>
<string>Font.ttf</string>
<key>PayloadIdentifier</key>
<string>com.example.myfontpayload</string>
<key>PayloadType</key>
<string>com.apple.font</string>
<key>PayloadUUID</key>
<string>99659c06-bbbf-45aa-9674-06b378ec2cd5</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>Fonts</string>
<key>PayloadIdentifier</key>
<string>com.example.myprofile</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>9800ea91-30c4-4212-8033-d21cad4fe99a</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>