Created
July 21, 2016 15:33
-
-
Save akkefa/407e9de86191afa65bae9a5293f3d0cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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