Skip to content

Instantly share code, notes, and snippets.

@akkefa
Created July 21, 2016 15:33
Show Gist options
  • Save akkefa/407e9de86191afa65bae9a5293f3d0cb to your computer and use it in GitHub Desktop.
Save akkefa/407e9de86191afa65bae9a5293f3d0cb to your computer and use it in GitHub Desktop.
//
// RoundedCornersView.swift
// Akkefa
//
// Created by Ikram ali
//
import UIKit
@IBDesignable
class RoundedCornersView: 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