Search code examples
iosmaterial-componentsmaterial-components-ios

How to change MDCTextField placeholder text color?


I'm currently using it with MDCTextInputControllerOutlined. I already tried

self.emailTextField.attributedPlaceholder = NSAttributedString(string: "Email", attributes: [.font: UIFont.ralewayFont(ofSize: 18.0, weight: .semibold), .foregroundColor: UIColor.white])

but not working


Solution

  • Found it! set UIColor to inlinePlaceholderColor for MDCTextInputControllerOutlined

    let emailTextField = MDCTextField()
    
    let emailTextFieldController = MDCTextInputControllerOutlined(textInput: emailTextField)
    emailTextFieldController.inlinePlaceholderColor = .white