Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mafellows
Created February 20, 2015 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mafellows/a2a32fb6c570dbdde9a9 to your computer and use it in GitHub Desktop.
Save mafellows/a2a32fb6c570dbdde9a9 to your computer and use it in GitHub Desktop.
label.font = [UIFont fontWithName:@"GillSans-Bold" size:28.0f]; // GilSans-Bold size 28 font
label.shadowColor = [UIColor blackColor]; // Black shadow color
label.shadowOffset = CGSizeMake(2.0f, 2.0f); // Width and height of the shadow offset
label.layer.shadowRadius = 1.0f; // The blur radius (in points) used to render the layer’s shadow
label.layer.shadowOpacity = 1.0f; // The opacity of the layer’s shadow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment