修改textField的placeholder的字体和颜色

  1. textField.placeholder = @"username is in here!";
  2. [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"];
  3. [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];
  4. 直接使用KVC模式,改变参数的值很方便
时间: 2024-11-05 12:29:48

修改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"];

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

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

设置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 se

改变textfield 的placeholder的大小和颜色

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

echarts修改X、 Y坐标轴字体的颜色

1.背景:在项目中常常会用到echarts的实例,根据不同的需求字体颜色需要变化,如图,要切合背景,就需要更改字体颜色 2.解决方案 xAxis : [ { type : 'category', data : weekDay, axisLabel: { show: true, textStyle: { color: this.xFontColor //这里用参数代替了 } }, } ], yAxis : [ { type : 'value', splitLine:{ show:false },

iOS:如何修改导航栏按钮或者字体的颜色

今天遇到了导航要设置颜色,并且是当前页面而其他页面不用,我是这样写的就ok了,好像苹果默认的是蓝色的 - (void)viewWillDisappear:(BOOL)animated{ self.navigationController.navigationBar.tintColor = nil; } - (void)viewWillAppear:(BOOL)animated{ self.navigationController.navigationBar.tintColor = [UIColo

修改导航栏标题的字体和颜色

self.navigationController.navigationBar.titleTextAttributes = @{NSFontAttributeName : [UIFont boldSystemFontOfSize:18],NSForegroundColorAttributeName:[UIColor whiteColor]};

iOS修改UITextField的Placeholder字体颜色

修改UITextField的Placeholder字体颜色有一下两张方式可以达到效果. 第一种: UIColor *color = [UIColor whiteColor]; textfield.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegroundColorAttributeName: color}]; 第二种: [textfield set

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

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