使UITextField占位符文本变为粗体

时间:2013-04-03 11:32:26

标签: iphone objective-c

我在Interface Builder中为UITextField设置了占位符。现在,如何使占位符文本变为粗体。?

3 个答案:

答案 0 :(得分:5)

请使用以下代码解决您的问题。

    UIColor *color = [UIColor blackColor];
    UIFont* boldFont = [UIFont boldSystemFontOfSize:[UIFont systemFontSize]];
    [self.textField setFont:boldFont];
    self.textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"Test" attributes:@{NSForegroundColorAttributeName: color}];

五月这很有帮助。

答案 1 :(得分:2)

最简单的方法是,如果您更改UITextField的属性(字体,大小等),它也会应用于占位符。只需更改UITextField的属性即可查看效果。

编辑:

然后在您的UITextField委托方法中,再次将此属性设置为正常。

答案 2 :(得分:0)

- (void) drawPlaceholderInRect:(CGRect)rect {
    [[UIColor blackColor] setFill];
    [[self placeholder] drawInRect:rect withFont:[UIFont systemFontOfSize:14]];
}