tags:

views:

17

answers:

1

How can I change a textview font and font size..

I've tried this but it doesnt seem to change anything...

typingText.font = [UIFont fontWithName:@"Marker Felt Thin" size:64.0f];

Thanks!

+1  A: 

The actual name of the font is "MarkerFelt-Thin".

typingText.font = [UIFont fontWithName:@"MarkerFelt-Thin" size:64.0f];
Nick Forge
i thought spaces might screw it up thanks