So, I know how to set the placeholder text of a XLFormRowDescriptor item:
[rowZIPCodeInput.cellConfig setObject:@"wheee" forKey:@"textField.placeholder"];
I can edit the color of the text using
[rowZIPCodeInput.cellConfig setObject:[UIColor pp_yellow] forKey:@"textLabel.textColor"];
But I can't figure out how to edit the color of the placeholder text. Is something like
[rowZIPCodeInput.cellConfig setObject:[UIColor pp_yellow] forKey:@"textField.placeholder.textColor"];
possible?