美文网首页
swift修改UITextfield的Placeholder字体

swift修改UITextfield的Placeholder字体

作者: 轮子糙 | 来源:发表于2017-06-27 15:38 被阅读737次

**//第一种 **

let textField = UITextField.init()  
textField.placeholder = placehold  
//字体大小  
textField.setValue(UIFont.systemFont(ofSize: 15),forKeyPath: "_placeholderLabel.font")  
//字体颜色  
textField.setValue(UIFont.systemFont(ofSize: 15), forKeyPath: "_placeholderLabel.textColor")

//第二种

//字体大小  
textField.attributedPlaceholder = NSAttributedString.init(string:"输入你需要的服务", attributes: [NSFontAttributeName:UIFont.systemFont(ofSize:15)])  
//字体颜色  
textField.attributedPlaceholder = NSAttributedString.init(string:"输入你需要的服务", attributes: [  NSForegroundColorAttributeName:UIColor.red])

相关文章

网友评论

      本文标题:swift修改UITextfield的Placeholder字体

      本文链接:https://www.haomeiwen.com/subject/gssecxtx.html