I\'ve been working on an app on and off for a few months starting with the first XCode 6/iOS 8 beta release. One of my favorite features added is live rendering, made possib
Had the same problem but to a glance at this great article. It solved my problem.
http://nshipster.com/ibinspectable-ibdesignable/
In short
To get these options in xcode
Make a property like this:
@IBInspectable var cornerRadius: CGFloat = 0 {
didSet {
layer.cornerRadius = cornerRadius
layer.masksToBounds = cornerRadius > 0
}
}