Skip to content

Instantly share code, notes, and snippets.

@neilkimmett
Created September 12, 2013 10:51
Show Gist options
  • Save neilkimmett/6535701 to your computer and use it in GitHub Desktop.
Save neilkimmett/6535701 to your computer and use it in GitHub Desktop.
Using a custom font with Dynamic Text
+ (UIFont *)bodyFont
{
UIFont *dynamicTextFont = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
UIFont *customFont = [UIFont fontWithName:@"Avenir" size:dynamicTextFont.pointSize];
return customFont;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment