我正在使用以下自定义文本字段类来更改文本字段的外观。现在,当用户开始编辑和结束编辑文本字段时,我需要更改文本字段的背景颜色,文本颜色和占位符颜色。怎么做,使用这个类。
import Foundation
import UIKit
class CustomTextField: UITextField{
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
//Border
self.layer.cornerRadius = 15.0;
self.layer.borderWidth = 1.5
self.layer.borderColor = UIColor.whiteColor().CGColor
//Background
self.backgroundColor = UIColor(white: 1, alpha: 0.0)
//Text
self.textColor = UIColor.whiteColor()
self.textAlignment = NSTextAlignment.Center
}
}
答案 0 :(得分:10)
在CustomTextField
课程中,您可以添加属性观察者:
var change: Bool = false {
didSet {
textColor = change ? .yellow : .black
backgroundColor = change ? .blue : .white
}
}
并在你的ViewController中:
func textFieldDidBeginEditing(textField: UITextField) {
customTextField.change = true
}
func textFieldDidEndEditing(textField: UITextField) {
customTextField.change = false
}
不要忘记在故事板中或以编程方式设置文本字段的代理。
编辑:
缩短了代码并更新了Swift 3
答案 1 :(得分:4)
你有EditingDidBegin等的控制事件。
这样的事情:
self.addTarget(self, action: "myFunc", forControlEvents: UIControlEvents.EditingDidBegin);
答案 2 :(得分:1)