Skip to content

Instantly share code, notes, and snippets.

@jeffreyjackson
Created April 8, 2015 14:29
Show Gist options
  • Save jeffreyjackson/c9fa7c83e5258d2e318b to your computer and use it in GitHub Desktop.
Save jeffreyjackson/c9fa7c83e5258d2e318b to your computer and use it in GitHub Desktop.
Text Glow
UIColor *glowColor = [UIColor greenColor];
textLabel.layer.shadowColor = [glowColor CGColor];
textLabel.layer.shadowRadius = 3.0f;
textLabel.layer.shadowOpacity = .8;
textLabel.layer.shadowOffset = CGSizeZero;
textLabel.layer.masksToBounds = NO;
@jeffreyjackson
Copy link
Author

You might not want to use green, but you get the idea.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment