I want to change Place holder color from user attributes (interface builder) because i dont want to subclass my UITextfield etc... i searched on internet and found this "_placeholderLabel.textColor" Yes this works well Programmatically [self.tfEmail setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"];
but i want to use it in user attributes in interface builder.
Try removing '_',
Works for me.
Without USING USER ATTRIBUTES
self.txtField.attributedPlaceholder = PlaceHolderAttributedString(@"ABCDEF");
where PlaceHolderAttributedString is a macro defined as
#define PlaceHolderAttributedString(placeHolderText) [[NSAttributedString alloc] initWithString:placeHolderText attributes:@{NSForegroundColorAttributeName:ColorTextFieldPlaceHolder}]
USING USER ATTRIBUTES
placeholderLabel.textColor
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With