大家好,我希望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)