Skip to content

Instantly share code, notes, and snippets.

@rakkang
Last active September 23, 2015 14:54
Show Gist options
  • Save rakkang/ecaaf9125e4bc68700d9 to your computer and use it in GitHub Desktop.
Save rakkang/ecaaf9125e4bc68700d9 to your computer and use it in GitHub Desktop.
UIImageView 圆形效果
// UIImageView 圆形效果
imgView.layer.cornerRadius = 24; // 圆角半径
imgView.layer.masksToBounds = YES; // 剪裁 View
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment