Created
September 13, 2012 12:43
-
-
Save yfujiki/3714081 to your computer and use it in GitHub Desktop.
Drop shadow on UIView (after iOS3.2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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