Skip to content

Instantly share code, notes, and snippets.

@ozgurshn
Created February 27, 2017 22:00
Show Gist options
  • Save ozgurshn/688955a3668408031ce08984d91b745f to your computer and use it in GitHub Desktop.
Save ozgurshn/688955a3668408031ce08984d91b745f to your computer and use it in GitHub Desktop.
Set corderRadius on XCode StoryBoard
import UIKit
@IBDesignable
class CustomView: UIView {
@IBInspectable var cornerRadius: CGFloat = 0 {
didSet {
layer.cornerRadius = cornerRadius
layer.masksToBounds = cornerRadius > 0
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment