I'm trying to set the color of the placeholder within a UITextField, however it causes either the placeholder to disappear, or turn the same color as the UITextField so that it can't be seen (I'm not sure which).
Within ViewWillAppear..
// Set placeholder color of password field
textfieldEmployeesClockedInSearchFilter1.AttributedPlaceholder
= new NSAttributedString(
"Find...",
font: Fonts.Paragraph(Fonts.FontWeightFlags.Regular),
foregroundColor: UIColor.FromRGBA(117 / 255, 117 / 255, 117 / 255, 255 / 255),
strokeColor: UIColor.FromRGBA(117 / 255, 117 / 255, 117 / 255, 255 / 255),
strokeWidth: 4
);
Am I misconfiguring something?