教你改变UITextFiled的placeholder颜色

来源:互联网 发布:网络教育好找工作吗 编辑:程序博客网 时间:2024/06/07 12:07
//第一种       textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"xxx" attributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
  //第二种  KVC [_userName setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"];  

0 0
原创粉丝点击