swift 在整个应用程序中设置自定义字体的全局外观。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在整个应用程序中设置自定义字体的全局外观。相关的知识,希望对你有一定的参考价值。

 func setupGlobalAppearance(){
        
    //global Appearance settings
     let customFont = UIFont.appRegularFontWith(size: 17)
     UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedStringKey.font: customFont], for: .normal)
     UITextField.appearance().substituteFontName = Constants.App.regularFont
     UILabel.appearance().substituteFontName = Constants.App.regularFont
     UILabel.appearance().substituteFontNameBold = Constants.App.boldFont
        
  }

以上是关于swift 在整个应用程序中设置自定义字体的全局外观。的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ActionBar 标题中设置自定义字体?

如何在summernote中设置自定义字体大小列表?

如何在 ListView 和 AlertDialog 中设置自定义字体?

在 Swift 中设置自定义 NavigationBar 的最简单方法是啥?

如何在 Xamarin ActionBar 标题中设置自定义字体系列?

如何在 iOS 的 WebView(react-native-webview) 中设置自定义字体?