web-dev-qa-db-ja.com

フォントをUITextViewにすばやく変更するにはどうすればよいですか?

やあ、私の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
}

しかし、それは動作しません....私を助けてもらえますか?私の英語でごめんなさい! :)

14

これを試して :

textFieldDescrizione.font = UIFont(name: "NameOfTheFont", size: 20)
33
Victor Sigler

Swift 4の場合、これは私にとってうまくいきました

textView.font = UIFont(name: "Courier", size: 20)
2
Guri