-2

How can the font for a UITextview be set to a journal font?

[textview setFont:[UIFont fontWithName:@"Helvetica" size:12]];

Any fonts related to journal would also work.

Jeff Wolski
  • 6,332
  • 6
  • 37
  • 69
Nazik
  • 8,696
  • 27
  • 77
  • 123
  • 1
    Possible duplicate of: http://stackoverflow.com/questions/3837965/how-to-add-custom-fonts-to-an-iphone-app – PakitoV Jun 04 '13 at 12:57
  • Check this tutorial http://attila.tumblr.com/post/22319634875/damn-custom-fonts-ios-again. – Divyu Jun 04 '13 at 12:58

1 Answers1

1

You should have added the font file as a custom font entry in the info.plist to use it in the first place because it is not included in iOS(i guess you know that just saying). Then the tricky part is to know the exact names of the fonts in the included file wit the exact case.

i-konov
  • 842
  • 1
  • 7
  • 19