Created
November 24, 2012 14:23
-
-
Save charliermarsh/4139881 to your computer and use it in GitHub Desktop.
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
disclosureIndicator.layer.shadowColor = [UIColor colorWithRed:0.2 green:0.2 blue:0.2 alpha:0.5].CGColor; | |
disclosureIndicator.layer.shadowOffset = CGSizeMake(0, 1); | |
disclosureIndicator.layer.shadowOpacity = 1.0; | |
disclosureIndicator.layer.shadowRadius = 1; | |
disclosureIndicator.layer.masksToBounds = NO; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment