Skip to content

Instantly share code, notes, and snippets.

@codeincontext
Created May 11, 2013 12:04
Show Gist options
  • Select an option

  • Save codeincontext/5559784 to your computer and use it in GitHub Desktop.

Select an option

Save codeincontext/5559784 to your computer and use it in GitHub Desktop.
Genius trick to get an inner drop shadow on a UILabel
label.textColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.55];
label.shadowColor = [UIColor blackColor];
label.shadowOffset = CGSizeMake(0.0,-1.0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment