-1

Is it legal (or okay with Apple) to have the title of a navigation bar or a navigation item have a custom font?

EDIT:

titleView.font = [UIFont fontWithName:@"Tahoma" size:20.0]; is not working with me.

darksky
  • 20,411
  • 61
  • 165
  • 254

1 Answers1

0

Sure! There are many apps having those. The only thing they still may reject your app for is if your font isn't readable, or when it infriges someones copyright or something ...

cutsoy
  • 10,127
  • 4
  • 40
  • 57
  • Why isn't `titleView.font = [UIFont fontWithName:@"Tahoma" size:20.0];` working then? Also, I have a custom font, how can I install it? – darksky Aug 29 '11 at 16:32
  • Said that Apple doesn't reject apps using a custom font, they don't really support it either ... You probably need to read this solution: http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application – cutsoy Aug 29 '11 at 16:39