I have tried to set UITextField
\"Placeholder\" color as dark.
NSAttributedString * search = [[NSAttributedString alloc] initWithSt
It will change textField
's palceholder textColor
[yourTextField setValue:[UIColor colorWithRed:150.0f/255.0f green:150.0f/255.0f blue:155.0f/255.0f alpha:1] forKeyPath:@"_placeholderLabel.textColor"];
Here is Latest way to Change FONT and COLOR of placeholder text
self.emailField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"Email" attributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName :[UIFont fontWithName:@"OpenSans" size:14.0]}];