您的位置:首页 > 移动开发 > IOS开发

iOS 修改TextField中的placeholder字体大小和颜色

2017-09-28 20:08 543 查看
1.在iOS6.0之前提供的attributedPlaceholder属性:

textField.placeholder = @"请输入用户名!";
 [textField setValue:[UIColor redColor] forKeyPath:@"_placeholderLabel.textColor"]; [textField setValue:[UIFont boldSystemFontOfSize:16] forKeyPath:@"_placeholderLabel.font"];

2.在iOS6.0之后提供的attributedPlaceholder属性:

UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
NSString *holderText = @"请输入密码!";
 NSMutableAttributedString *placeholder = [[NSMutableAttributedString alloc] initWithString:holderText];
 [placeholder addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, holderText.length)];
 [placeholder addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:16] range:NSMakeRange(0, holderText.length)];textField.attributedPlaceholder = placeholder;
 [cell.contentView addSubview:textField];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  app 字体 ios 6 ios开发 iOS