Question

How to change placeholder text color in xib ? I have tried key path thing but it is giving me NSException. Can anyone please help.

Was it helpful?

Solution

The easiest method to modify the placeholder text color is through the Xcode storyboard interface builder. Select the UITextField of interest and open the identity inspector on the right. Click on the plus symbol in the User Defined Runtime Attributes and add a new row with Key Path as placeholderLabel.textColor, Type as Color and Value to your desired color.

OTHER TIPS

enter image description here

Navneils answer with screenshot ,You can set opacity also from here

use placeholderLabel.textColor instead of _placeholderLabel.textColor for swift 5.0 and iOS 13

enter image description here

We cannot change textcolor of placeholder text in storyboard. Manually we can change with the property name.

Addthis code in viewDidLoad

[nameTextField setValue:[UIColor colorWithRed:41.0/255.0 green:91.0/255.0 blue:106.0/255.0 alpha:1.0] forKeyPath:@"_placeholderLabel.textColor"];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top