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

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

}

我正在使用上面的代码,但它不起作用。

4

1 回答 1

9

正如MonoTouch.UIKit.UITextField.AttributedPlaceholder的 iOS-API 文档中所见,您可以清楚地看到:

myLogin.AttributedPlaceholder = new NSAttributedString (
    "Enter your credentials",
    font: UIFont.FromName ("HoeflerText-Regular", 24.0f),
    foregroundColor: UIColor.Red,
    strokeWidth: 4 
);
于 2014-06-03T23:45:11.537 回答