2. add Keyword @IBInspectable properties
ex ) MyView.swift
@IBDesignable MyView : UIView {
var titleLabel:UILabel?
@IBInspectable var textColor : UIColor! {
didSet {
if self.titleLabel != nil {
self.titleLabel.textColor = textColor
}
}
}
}