Can Change UITextField Placeholder Text Color as follows:
[txtField setValue:[UIColor colorWithRed:128.0/255.0 green:128.0/255.0 blue:128.0/255.0 alpha:1.0]
forKeyPath:@"_placeholderLabel.textColor"];
Similarly is there any way to Resize UITextField Placeholder Text Font to Fit UITextField width?
Note: I have text fields in custom cell of table view and also using autolayout in custom cell.