Skip to content

Instantly share code, notes, and snippets.

@JINi0S
JINi0S / FindRegisteredFont.swift
Created March 5, 2024 15:54
내장폰트명 검색 시 사용
Text("Hello, world!")
.onAppear {
for family in UIFont.familyNames {
print("\(family)");
for names in UIFont.fontNames(forFamilyName: family) {
print("== \(names)");
}
}
}