Skip to content

Instantly share code, notes, and snippets.

@hlxwell
Created March 25, 2013 03:05
Show Gist options
  • Save hlxwell/5234649 to your computer and use it in GitHub Desktop.
Save hlxwell/5234649 to your computer and use it in GitHub Desktop.
Add shadow to UIView
_subtitleTextView.layer.shadowOffset = CGSizeMake(3.0f, 3.0f);
_subtitleTextView.layer.shadowColor = [[UIColor blackColor] CGColor];
_subtitleTextView.layer.shadowOpacity = 1.0f;
_subtitleTextView.layer.shadowRadius = 0.0f;
_subtitleTextView.textColor = [UIColor whiteColor];
_subtitleTextView.alpha = 1.0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment