gpt4 book ai didi

ios - 线条出现在 iOS 7 文本字段中

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:41:30 24 4
gpt4 key购买 nike

我使用以下代码在 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

enter image description here

最佳答案

尝试使用以下代码更改文本字段占位符的颜色。

[self.myTextField setValue:[UIColor darkGrayColor] forKeyPath:@"_placeholderLabel.textColor"];

关于ios - 线条出现在 iOS 7 文本字段中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18887237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com