title navigation bar的已安装字体

UINavigationBar.appearance().titleTextAttributes = [.font: UIFont(name: "OpenSans", size:50 )!,NSAttributedString.Key.foregroundColor : UIColor.purple]

我该怎么让它变得大胆?
找到了,可以这么做,但毕竟我已经设置好了
.font : UIFont.boldSystemFont(ofSize: 50)

最佳答案

你必须说你想使用的字体是OpenSans加粗体

"OpenSans-Bold"

所以使用这个:
.font: UIFont(name: "OpenSans-Bold", size: 50)!

10-08 05:50