1

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

4

3 回答 3

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}];

愿这有助于很多。

于 2013-04-03T11:57:33.000 回答
2

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

编辑 :

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

于 2013-04-03T11:34:32.047 回答
0
- (void) drawPlaceholderInRect:(CGRect)rect {
    [[UIColor blackColor] setFill];
    [[self placeholder] drawInRect:rect withFont:[UIFont systemFontOfSize:14]];
}
于 2013-04-03T12:18:20.543 回答