14

我正在尝试使我的文本字段中的占位符斜体,并且由于我的应用程序针对的是 iOS 6.0 或更高版本,因此决定使用attributedPlaceholder属性而不是滚动更多自定义的东西。代码如下:

NSString *plString = @"optional";
NSAttributedString *placeholder = [[NSAttributedString alloc] initWithString:plString
        attributes:@{NSFontAttributeName : [UIFont fontWithName:@"HelveticaNeue-LightItalic" size:15]}];
for (UITextField *t in myTextfields){
    t.placeholder = plString;
    t.attributedPlaceholder = placeholder;
}

然而占位符的样式仍然不是斜体,而是与常规文本相同,只是变暗了。我缺少什么来完成这项NSAttributedString工作?

4

4 回答 4

18

正如沃伦所指出的,目前无法按照您尝试的方式完成造型。一个好的解决方法是按照您希望占位符的外观设置文本字段的字体属性,然后在用户开始输入时更改文本字段的字体。看起来占位符和文本是不同的字体。

您可以通过创建文本字段的委托并使用 shouldChangeCharactersinRange 来做到这一点,如下所示:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{    
    // If there is text in the text field
    if (textField.text.length + (string.length - range.length) > 0) {
        // Set textfield font
        textField.font = [UIFont fontWithName:@"Font" size:14];
    } else {
        // Set textfield placeholder font (or so it appears)
        textField.font = [UIFont fontWithName:@"PlaceholderFont" size:14];
    }

    return YES;
}
于 2013-02-23T00:29:36.563 回答
10

这几乎可以肯定是一个错误。该属性的文档attributedPlaceholder声称无论前景色属性如何,都将使用灰色绘制字符串,但事实并非如此:您可以同时设置前景色和背景色。不幸的是,字体属性似乎被剥离并恢复为系统字体。

作为一种解决方法,我建议您drawPlaceholderInRect:自己覆盖并绘制占位符。此外,您应该为此提交一份 Radar,并包含一个演示该错误的最小示例项目。

于 2013-02-22T20:01:05.900 回答
8

我自己偶然发现了这个问题。显然,占位符将采用分配给文本字段的任何字体。只需设置文本字段的字体就可以了。

For everything else, like the colour of the placeholder, I'd still go back to attributedPlaceholder

于 2013-06-19T04:35:25.390 回答
-1

iOS8/9/Swift 2.0 - working example

func colorPlaceholderText(){
    var multipleAttributes = [String : NSObject]()
    multipleAttributes[NSForegroundColorAttributeName] = UIColor.appColorCYAN()
    //OK - comment in if you want background color
    //multipleAttributes[NSBackgroundColorAttributeName] = UIColor.yellowColor()
    //OK - Adds underline
    //multipleAttributes[NSUnderlineStyleAttributeName] = NSUnderlineStyle.StyleDouble.rawValue


    let titleString = "Search port/country/vessel..."
    let titleAttributedString = NSAttributedString(string: titleString,
        attributes: multipleAttributes)


    self.textFieldAddSearch.attributedPlaceholder = titleAttributedString
}
于 2015-09-23T17:03:12.413 回答