I have tried to set UITextField \"Placeholder\" color as dark.
UITextField
NSAttributedString * search = [[NSAttributedString alloc] initWithSt
Its very simple....
Try this to change placeholder text color..
UIColor *color = [UIColor blackColor]; textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:placeholderText attributes:@{NSForegroundColorAttributeName: color}];