欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Swift 4 中的一些变化

程序员文章站 2022-03-08 07:55:55
1.字体设置方面 之前设置字体 用这些关键字 NSFontAttributeName ,NSForegroundColorAttributeName ,NSParagraphStyleAttributeName 在swift 4 中这些都被弃用 如果使用会出现如下错误: Use of unresol ......
  • 1.字体设置方面 

之前设置字体 用这些关键字 NSFontAttributeName ,NSForegroundColorAttributeName ,NSParagraphStyleAttributeName

在swift 4 中这些都被弃用  如果使用会出现如下错误:

Use of unresolved identifier 'NSFontAttributeName'

Use of unresolved identifier 'NSForegroundColorAttributeName'

Use of unresolved identifier 'NSParagraphStyleAttributeName'

现在正确时使用方法是用   NSAttributedStringKey.font    NSAttributedStringKey.foregroundColor 等更swift化的形式代替。

比如设置导航栏title 字体样式:还可以直接使用  .font   .foregroundColor  省略  NSAttributedStringKey

  • navigationBar.titleTextAttributes = {[ NSAttributedStringKey.foregroundColor: UIColor.white, NSAttributedStringKey.font: UIFont.systemFont(ofSize: 20) ]}()