Skip to content

Instantly share code, notes, and snippets.

@kishorek
Forked from MugunthKumar/gist:2036521
Created March 27, 2012 09:40
Show Gist options
  • Save kishorek/2214415 to your computer and use it in GitHub Desktop.
Save kishorek/2214415 to your computer and use it in GitHub Desktop.
UIView Shadow within PNG
self.myView.layer.masksToBounds = NO;
self.myView.layer.shadowColor = [UIColor blackColor].CGColor;
self.myView.layer.shadowOffset = CGSizeMake(0.0f, 2.0f);
self.myView.layer.shadowOpacity = 0.7f;
self.myView.layer.shadowRadius = 3.0f;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment