Skip to content

Instantly share code, notes, and snippets.

@yfujiki
Created April 17, 2012 15:51
Show Gist options
  • Save yfujiki/2407029 to your computer and use it in GitHub Desktop.
Save yfujiki/2407029 to your computer and use it in GitHub Desktop.
Add corner radius to UIView in iOS
UIView * view = ...
view.layer.masksToBounds = YES;
view.layer.cornerRadius = width;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment