[Xcode]Tabbar fontの変更
AppDelegate-didFinishLaunchingWithOptionsにフォント変更コードを入力します.
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// 탭바 폰트 설정
let appearance = UITabBarItem.appearance()
let attributes = [NSAttributedString.Key.font:UIFont(name: "폰트 이름", size: 폰트사이즈)]
appearance.setTitleTextAttributes(attributes as [NSAttributedString.Key : Any], for: .normal)
}
Reference
この問題について([Xcode]Tabbar fontの変更), 我々は、より多くの情報をここで見つけました https://velog.io/@rlawnstn01023/Xcode-Tabbar-font-변경テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol