Skip to content

Instantly share code, notes, and snippets.

@shishirthedev
Created January 20, 2019 05:16
Show Gist options
  • Save shishirthedev/a031103b6009802b4031df49d2378169 to your computer and use it in GitHub Desktop.
Save shishirthedev/a031103b6009802b4031df49d2378169 to your computer and use it in GitHub Desktop.
import UIKit
class RoundImage: UIImageView {
@IBInspectable var cornerRadius:CGFloat = 0{
didSet{
self.layer.cornerRadius = cornerRadius
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment