Skip to content

Instantly share code, notes, and snippets.

@demigod19892012
Created April 4, 2013 06:58
Show Gist options
  • Save demigod19892012/5308406 to your computer and use it in GitHub Desktop.
Save demigod19892012/5308406 to your computer and use it in GitHub Desktop.
[IOS] Draw shadow under an UIView
view.layer.masksToBounds = NO;
view.layer.shadowOffset = CGSizeMake(-15, 20);
view.layer.shadowRadius = 5;
view.layer.shadowOpacity = 0.5;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment