Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Comic Sans Missing from iOS Build

Tags:

iphone

For some strange reason Comic Sans disappeared from my list of available fonts. The font does not show up on the simulator or on the device. OS X 10.6.7, 10.7, Xcode 4.01 or 4.2, iOS 4.3 or iOS 5.0. It will not show up.

It appears to be just my computer as any other device that I build with will not have that font show up either.

I am using:

 [UIFont fontWithName:@"ComicSansMS"]

I have also tried:

   [UIFont fontWithName:@"Comic Sans MS"]

nothing works. Comic Sans does appear on my computer though.

Thanks for the input.

like image 780
Ngoan Nguyen Avatar asked Nov 30 '22 07:11

Ngoan Nguyen


1 Answers

Apple's answer to Comic Sans is Chalkboard.

This is how you use it in CSS:

font-family: "Comic Sans", "Comic Sans MS", "Chalkboard", "ChalkboardSE-Regular", sans-serif;
like image 83
kingprawn Avatar answered Dec 09 '22 14:12

kingprawn