Skip to content

Instantly share code, notes, and snippets.

@DonMag
Created January 22, 2016 14:22
Show Gist options
  • Save DonMag/306320f8dd49e3735781 to your computer and use it in GitHub Desktop.
Save DonMag/306320f8dd49e3735781 to your computer and use it in GitHub Desktop.
UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRect:view.bounds];
view.layer.masksToBounds = NO;
view.layer.shadowColor = [UIColor blackColor].CGColor;
view.layer.shadowOffset = CGSizeMake(5.0f, 5.0f);
view.layer.shadowOpacity = 1.0f;
view.layer.shadowPath = shadowPath.CGPath;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment