Files
ContainerController/Example/ContainerControllerSwift/Framework/Extension/Field.swift
T

20 lines
475 B
Swift

//
// TextField.swift
// PlusBank
//
// Created by Рустам Мотыгуллин on 17.02.2021.
//
import UIKit
extension UITextField {
@IBInspectable var placeHolderColor: UIColor? {
get {
return self.placeHolderColor
}
set {
self.attributedPlaceholder = NSAttributedString(string:self.placeholder != nil ? self.placeholder! : "", attributes:[NSAttributedString.Key.foregroundColor: newValue!])
}
}
}