Skip to content

Instantly share code, notes, and snippets.

View narendra-r's full-sized avatar

Narendra Kumar Rangisetty narendra-r

  • DBS Bank
  • Hyderabad
View GitHub Profile
@GLeHir
GLeHir / UIView Extension - Swift 3
Last active April 24, 2018 11:03
UIView Extension in Swift 3, unabling Border Color, Width, Radius & Shadow parameters in Storyboard views
import UIKit
@IBDesignable extension UIView {
/* BORDER */
@IBInspectable var borderColor:UIColor? {
set {
layer.borderColor = newValue!.cgColor
}