Skip to content

Instantly share code, notes, and snippets.

@yfujiki
Created September 13, 2012 12:43
Show Gist options
  • Save yfujiki/3714081 to your computer and use it in GitHub Desktop.
Save yfujiki/3714081 to your computer and use it in GitHub Desktop.
Drop shadow on UIView (after iOS3.2)
yourView.layer.shadowColor = [[UIColor blackColor] CGColor];
yourView.layer.shadowOffset = CGSizeMake(10.0f, 10.0f);
yourView.layer.shadowOpacity = 1.0f;
yourView.layer.shadowRadius = 10.0f;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment