3

我已使用以下代码在 iOS 文本字段中显示彩色占位符。这在 iOS 5 和 6 中运行良好。但在 iOS 7 中,文本字段的中间出现一行。

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}

- (void) drawPlaceholderInRect:(CGRect)rect {
    [SEARCH_FIELD_FONT_COLOR setFill];
    if (self.placeholderFont) {
        [[self placeholder] drawInRect:rect withFont:SEARCH_FIELD_FONT];
    }else {
        [[self placeholder] drawInRect:rect withFont:self.placeholderFont];
    }
}

@end

在此处输入图像描述

4

2 回答 2

0

尝试使用以下代码更改 textFiled 占位符的颜色。

[self.myTextField setValue:[UIColor darkGrayColor] forKeyPath:@"_placeholderLabel.textColor"];
于 2013-09-19T06:28:53.550 回答
0

这可能会更好一些。此外,您可以使用和属性占位符更改字体。

- (void) drawPlaceholderInRect:(CGRect)rect {
    [SEARCH_FIELD_FONT_COLOR setFill];

    [super drawPlaceholderInRect:rect];
}
于 2013-09-19T10:31:27.267 回答