Mahesh Bansode
Mahesh Bansode

Reputation: 297

How to change color and font of UITextField Placeholder in Xamarin for iOS7

using(UIFont font=StyleHelper.Fonts.HelveticaNeueLTDMC_18
using(UIColor color=UIColor.Clear.FromHex(0xc7c7c7))
{
    color.SetFill ();

    base.DrawString (this.Placeholder, rect, font);

}

I am using above code but it is not working.

Upvotes: 4

Views: 4122

Answers (1)

Jack
Jack

Reputation: 3680

As seen on the iOS-API documentation for MonoTouch.UIKit.UITextField.AttributedPlaceholder, you can clearly see:

myLogin.AttributedPlaceholder = new NSAttributedString (
    "Enter your credentials",
    font: UIFont.FromName ("HoeflerText-Regular", 24.0f),
    foregroundColor: UIColor.Red,
    strokeWidth: 4 
);

Upvotes: 9

Related Questions