- UIAppearance. ( , UI_APPEARANCE_SELECTOR.) - UITextField; , Interface Builder.
@IBDesignable class PCTextField: UITextField {
@IBInspectable var placeholderColor: UIColor = UIColor.redColor() {
didSet {
if let placeholder = self.placeholder {
let colorAttribute = [NSForegroundColorAttributeName: placeholderColor]
attributedPlaceholder = NSAttributedString(string: placeholder, attributes: colorAttribute)
}
}
}
}
, placeholderColor NSUserDefaults UIAppearance.