当前位置: 移动技术网 > IT编程>移动开发>IOS > Swift 4 中的一些变化

Swift 4 中的一些变化

2018年05月29日  | 移动技术网IT编程  | 我要评论

业务员做什么,hp之重回天真,日薄西山造句

  • 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) ]}()

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网