设置textfield的placeholder的字体和颜色

UITextField *textField = [[UITextField
alloc] initWithFrame:CGRectMake(10,
30, 300,
150)];

textField.placeholder =
@"this is a textField";

[textField setValue:[UIColor
redColor]
forKeyPath:@"_placeholderLabel.textColor"];

[textField setValue:[UIFont
boldSystemFontOfSize:30]
forKeyPath:@"_placeholderLabel.font"];

textField.borderStyle =
UITextBorderStyleRoundedRect;

[self.view
addSubview:textField];

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-09 19:36:20

设置textfield的placeholder的字体和颜色的相关文章

修改textField的placeholder的字体和颜色

textField.placeholder = @"username is in here!"; [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"]; 直

设置textField的placeholder字体的颜色,默认是灰色

//设置textField的placeholder字体的颜色,默认是灰色 UIColor *color = [UIColor whiteColor]; self.loginNumText.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"请输入用户名" attributes:@{NSForegroundColorAttributeName: color}];

改变textfield 的placeholder的大小和颜色

改变textfield 的placeholder的大小方法: [_nameTextField setValue:[UIFont boldSystemFontOfSize:5] forKeyPath:@"_placeholderLabel.font"]; [_nameTextField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];

设置textField的placegolder的字体大小和字体颜色

? ? ? ?由于项目的主题颜色为灰黑色,所以当使用textField的时候,placeholder内的字体默认是灰色,当程序执行的时候,差点儿看不到. ? ? ? ?翻来翻去找到一种比較简单地方法,仅仅须要复制以下三行代码就可以. ? ? ??self.ttt.placeholder = @"请输入username!"; ? ? ? [self.tttsetValue:[UIColorredColor?forKeyPath:@"_placeholderLabel.textC

修改textField的placeholder的字体颜色、大小

  textField.placeholder = @"username is in here!"; [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

ios修改textField的placeholder的字体颜色、大小

textField.placeholder = @"summer"; [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

如何设置css3中placeholder的字体颜色

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #666; } input:-moz-placeholder, textarea:-moz-placeholder { color:#666; } input::-moz-placeholder, textarea::-moz-placeholder { color:#666; } input:-ms-input-placeholder, 

swift开发教程--如何设置导航控制器标题栏的字体及颜色

self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName:UIColor.whiteColor(),UIFont(name: "Heiti SC", size: 24.0)!]; 版权声明:本文为博主原创文章,未经博主允许不得转载.

ios 设置UITextField的placeholder大小颜色

需求:产品嫌弃placeholder的字体太大,颜色太明显,要求跟正常输入时的字体及颜色不同 方法:设置placeholder的大小和颜色,实际上是设置placeholder的label的大小和颜色,但是当设置完之后,placeholder的字体有点偏上了,所以设置一下属性. // 设置placeholder的字体大小 [titleField setValue:[UIFont systemFontOfSize:13] forKeyPath:@"_placeholderLabel.font&quo