我已经阅读了为 iOS 贡献 Cosmic Mind Material library 的指南。我似乎无法更改 TextField 的色调或光标。
这是我的类别代码:
func setupCustomTextField(textColor: UIColor, placeHolder: String?, delegate: UITextFieldDelegate) -> TextField? {
guard let materialSelf = self as? TextField else {
return nil
}
materialSelf.backgroundColor = .clear
materialSelf.textColor = textColor
materialSelf.borderColor = textColor
materialSelf.isClearIconButtonEnabled = true
materialSelf.delegate = delegate
materialSelf.dividerNormalColor = textColor
materialSelf.dividerActiveColor = textColor
materialSelf.tintColor = textColor
materialSelf.font = R.font.latoRegular(size: 15)
if let placeHolder = placeHolder {
let localizedPlaceHolder = NSLocalizedString(placeHolder, comment: "")
let attributedString = NSAttributedString(string: localizedPlaceHolder,
attributes: [NSForegroundColorAttributeName: textColor])
materialSelf.attributedPlaceholder = attributedString
}
return materialSelf
}
结果: