Skip to content

Instantly share code, notes, and snippets.

@TheCodeEngine
Last active October 11, 2015 01:18
Show Gist options
  • Save TheCodeEngine/3780474 to your computer and use it in GitHub Desktop.
Save TheCodeEngine/3780474 to your computer and use it in GitHub Desktop.
Shine Effect CALayer, you need QuartzCore
clock.layer.shadowColor = [[UIColor redColor] CGColor];
clock.layer.shadowRadius = 4.0f;
clock.layer.shadowOpacity = 0.9f;
clock.layer.shadowOffset = CGSizeZero;
clock.layer.masksToBounds = NO;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment