やあ、私のtextView
にこのフォントを付けてほしい:"Apple SD Gothic Light"
...私はここでこのコードを使用しました:
if (titolo.text == NSLocalizedString("SEVENTH_ANNOTATION_TITLE", comment: "")){
// aggiungo le immagini all'array
pageImages = [UIImage(named: "TeatroMassimoBellini1.png")!,
UIImage(named: "TeatroMassimoBellini2.png")!,
UIImage(named: "TeatroMassimoBellini3.png")!]
textFieldDescrizione.text = NSLocalizedString("SEVENTH_ANNOTATION_DESCRIPTION", comment: "")
textFieldDescrizione.font = UIFont.preferredFontForTextStyle("AppleSDGothicNeo-Light")
textFieldDescrizione.textAlignment = NSTextAlignment.Justified
}
しかし、それは動作しません....私を助けてもらえますか?私の英語でごめんなさい! :)
これを試して :
textFieldDescrizione.font = UIFont(name: "NameOfTheFont", size: 20)
Swift 4の場合、これは私にとってうまくいきました
textView.font = UIFont(name: "Courier", size: 20)