Skip to content

Instantly share code, notes, and snippets.

@JINi0S
Created March 5, 2024 15:54
Show Gist options
  • Save JINi0S/2276e4c531df2608c5a603c4defd9330 to your computer and use it in GitHub Desktop.
Save JINi0S/2276e4c531df2608c5a603c4defd9330 to your computer and use it in GitHub Desktop.
내장폰트명 검색 시 사용
Text("Hello, world!")
.onAppear {
for family in UIFont.familyNames {
print("\(family)");
for names in UIFont.fontNames(forFamilyName: family) {
print("== \(names)");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment